Redirect output of kill command

This commit is contained in:
William Wernert
2021-03-11 16:13:52 -05:00
parent e2fc1b0b39
commit 8e8bb1489b

View File

@@ -286,7 +286,7 @@ percentage=0
progress_bg_proc=$!
installer_prereq_packages
install_success=$?
kill -9 $progress_bg_proc
kill -9 $progress_bg_proc &> /dev/null
if [[ $install_success -gt 0 ]]; then
error "Could not install packages required for setup, exiting now."
kill -SIGUSR1 "$setup_proc" &> /dev/null; exit 1