reduce verbosity on cleanup commands

This commit is contained in:
BeatLink 2019-06-16 23:37:18 -05:00
parent 99da36d719
commit c087f9a442

View file

@ -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";