filesystem-cleanup: fix "fixed space" type

Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>
This commit is contained in:
Arne Fitzenreiter
2020-01-25 15:05:38 +00:00
parent 612bb2dff9
commit 8c0ab3d471

View File

@@ -85,7 +85,7 @@ main() {
echo "Removing ${file}..."
# Actually remove the file (maybe)
if [ "${dry_run}" = "false" ]; then
if [ "${dry_run}" = "false" ]; then
unlink "${file}"
fi
;;