diff --git a/scripts/purge_images.sh b/scripts/purge_images.sh index 400a858..a394e6c 100755 --- a/scripts/purge_images.sh +++ b/scripts/purge_images.sh @@ -9,7 +9,7 @@ find "/home/thomas/repos/eolas/img" -type f | while read filename; do # If the image is not found in any file, delete it if [ -z "$search_result" ]; then echo "Deleted unused image: ${filename##*/}" - # rm $filename + rm $filename fi done