From: Arne Fitzenreiter Date: Sat, 25 Jan 2020 15:05:38 +0000 (+0000) Subject: filesystem-cleanup: fix "fixed space" type X-Git-Tag: v2.25-core141~33 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8c0ab3d471c2cb468c5c904dd3b62041aab528ba;p=ipfire-2.x.git filesystem-cleanup: fix "fixed space" type Signed-off-by: Arne Fitzenreiter --- diff --git a/src/scripts/filesystem-cleanup b/src/scripts/filesystem-cleanup index e0430e4802..f4d4f7df28 100644 --- a/src/scripts/filesystem-cleanup +++ b/src/scripts/filesystem-cleanup @@ -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 ;;