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:26:17 +02:00
parent fdcbb6186c
commit 10d4f8d2ad

View File

@ -38,10 +38,10 @@ trash_restore() {
trash_rm() {
for FILE_TO_REMOVE in "$@"; do
if ! [[ "$FILE_TO_REMOVE" =~ $HOME/.trash ]]
if [[ ! "$FILE_TO_REMOVE" =~ $HOME/.trash ]]
then FILE_TO_REMOVE="$HOME/.trash/$FILE_TO_REMOVE"
fi
if find "$FILE_TO_REMOVE" >& /dev/null; then
if [ -f "$FILE_TO_REMOVE" ]; then
\rm -Ir "$HOME"/.trash/"$FILE_TO_REMOVE" && sed -i "/$FILE_TO_REMOVE/d" "$FILE_PATHS_FILE"
else
echo "$FILE_TO_REMOVE is not in Trash." && false