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.
merge-requests/16/head 2021.2
Raphaël Hertzog 4 years ago
parent 7058d21c73
commit 541e36278f
No known key found for this signature in database
GPG Key ID: 03881DABEBC29AB9

@ -116,12 +116,12 @@ clean() {
#run_and_log $SUDO umount -l $(pwd)/chroot/proc #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/dev/pts
#run_and_log $SUDO umount -l $(pwd)/chroot/sys #run_and_log $SUDO umount -l $(pwd)/chroot/sys
#run_and_log $SUDO rm -rfv $(pwd)/chroot #run_and_log $SUDO rm -rf $(pwd)/chroot
#run_and_log $SUDO rm -rfv $(pwd)/binary #run_and_log $SUDO rm -rf $(pwd)/binary
# Installer # Installer
run_and_log $SUDO rm -rfv $(pwd)/simple-cdd/tmp run_and_log $SUDO rm -rf $(pwd)/simple-cdd/tmp
run_and_log $SUDO rm -rfv $(pwd)/simple-cdd/debian-cd run_and_log $SUDO rm -rf $(pwd)/simple-cdd/debian-cd
} }
# Allowed command line options # Allowed command line options

Loading…
Cancel
Save