From c087f9a442a82b1676d298ba51982d848dd2d7ed Mon Sep 17 00:00:00 2001 From: BeatLink Date: Sun, 16 Jun 2019 23:37:18 -0500 Subject: [PATCH] reduce verbosity on cleanup commands --- browser/build.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/browser/build.sh b/browser/build.sh index 92e8f70..26325b4 100755 --- a/browser/build.sh +++ b/browser/build.sh @@ -134,15 +134,15 @@ printf "\n\n---------------------------------------- CLEANUP ------------------- # Remove the compile folder printf "\nDeleting the compile_folder\n"; -rm -rvf ./compile_folder; +rm -rf ./compile_folder; # Delete the extracted binary tarball folder printf "\nDeleting extracted binary tarball folder\n"; -rm -rvf ./librewolf; +rm -rf ./librewolf; # Delete the appimage tool printf "\nRemoving AppImage tool\n"; -rm -vf ./appimagetool-x86_64.AppImage +rm -f ./appimagetool-x86_64.AppImage # Delete the bootstrapper script printf "\nRemoving bootstrapper.py\n";