From 541e36278f36ea2ef352092026f50382a20729ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Hertzog?= Date: Tue, 18 May 2021 18:26:17 +0200 Subject: [PATCH] Drop -v switch on rm calls in clean() They remove thousands of files and the output is overwhelming, moving away any useful history out of the terminal history. --- build.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.sh b/build.sh index 4772cde..654bb15 100755 --- a/build.sh +++ b/build.sh @@ -116,12 +116,12 @@ clean() { #run_and_log $SUDO umount -l $(pwd)/chroot/proc #run_and_log $SUDO umount -l $(pwd)/chroot/dev/pts #run_and_log $SUDO umount -l $(pwd)/chroot/sys - #run_and_log $SUDO rm -rfv $(pwd)/chroot - #run_and_log $SUDO rm -rfv $(pwd)/binary + #run_and_log $SUDO rm -rf $(pwd)/chroot + #run_and_log $SUDO rm -rf $(pwd)/binary # Installer - run_and_log $SUDO rm -rfv $(pwd)/simple-cdd/tmp - run_and_log $SUDO rm -rfv $(pwd)/simple-cdd/debian-cd + run_and_log $SUDO rm -rf $(pwd)/simple-cdd/tmp + run_and_log $SUDO rm -rf $(pwd)/simple-cdd/debian-cd } # Allowed command line options