diff options
-rwxr-xr-x | bin/schroot-create.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/schroot-create.sh b/bin/schroot-create.sh index fca04f43..f59010b1 100755 --- a/bin/schroot-create.sh +++ b/bin/schroot-create.sh @@ -57,7 +57,7 @@ bootstrap() { cleanup() { if [ -d $CHROOT_TARGET ]; then - echo sudo rm -rf --one-file-system $CHROOT_TARGET || echo fuser -mv $CHROOT_TARGET + sudo rm -rf --one-file-system $CHROOT_TARGET || fuser -mv $CHROOT_TARGET fi } trap cleanup INT TERM EXIT |