fix trash_rm
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Kim Oliver Drechsel 2021-09-21 19:39:38 +02:00
parent 8492f4ea64
commit 3f25c96eb4

View File

@ -42,7 +42,7 @@ trash_rm() {
then FILE_TO_REMOVE="$HOME/.trash/$FILE_TO_REMOVE"
fi
if [ -f "$FILE_TO_REMOVE" ]; then
\rm -Ir "$HOME"/.trash/"$FILE_TO_REMOVE" && sed -i "/$FILE_TO_REMOVE/d" "$FILE_PATHS_FILE"
\rm -Irf "$HOME"/.trash/"$FILE_TO_REMOVE" && sed -i "/$FILE_TO_REMOVE/d" "$FILE_PATHS_FILE"
else
echo "$FILE_TO_REMOVE is not in Trash." && false
fi