From d57848d0ab03dd3cc3773a9c30eac27b62ba0b89 Mon Sep 17 00:00:00 2001 From: Botspot Date: Thu, 4 Mar 2021 10:55:32 -0600 Subject: [PATCH] fix nice command usage --- manage | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manage b/manage index e5f0bf5..72d19df 100755 --- a/manage +++ b/manage @@ -131,7 +131,7 @@ elif [ "$1" == 'install' ];then echo -e "\e[96mInstalling $app with $scriptname script\e[39m" cd $HOME echo 'corrupted' > "${DIRECTORY}/data/status/${app}" - if "nice $installscript" ; then + if nice "$installscript" ; then echo 'installed' > "${DIRECTORY}/data/status/${app}" echo -e "\n\e[42m\e[30mInstalled ${app} successfully.\e[39m\e[49m" exit 0