diff --git a/install-scripts/InputGroup.sh b/install-scripts/InputGroup.sh index 6f3e826..0b32ec0 100755 --- a/install-scripts/InputGroup.sh +++ b/install-scripts/InputGroup.sh @@ -14,8 +14,6 @@ cd "$PARENT_DIR" || exit 1 # Set the name of the log file to include the current date and time LOG="Install-Logs/install-$(date +%d-%H%M%S)_input.log" -set -e - # Set some colors for output messages OK="$(tput setaf 2)[OK]$(tput sgr0)" ERROR="$(tput setaf 1)[ERROR]$(tput sgr0)" diff --git a/install-scripts/paru.sh b/install-scripts/paru.sh index 93f9925..c58d2ea 100755 --- a/install-scripts/paru.sh +++ b/install-scripts/paru.sh @@ -8,8 +8,6 @@ # Set the name of the log file to include the current date and time LOG="Install-Logs/install-$(date +%d-%H%M%S)_paru.log" -set -e - # Set some colors for output messages OK="$(tput setaf 2)[OK]$(tput sgr0)" ERROR="$(tput setaf 1)[ERROR]$(tput sgr0)" diff --git a/install-scripts/yay.sh b/install-scripts/yay.sh index 17671c0..27ce734 100755 --- a/install-scripts/yay.sh +++ b/install-scripts/yay.sh @@ -8,8 +8,6 @@ # Set the name of the log file to include the current date and time LOG="Install-Logs/install-$(date +%d-%H%M%S)_yay.log" -set -e - # Set some colors for output messages OK="$(tput setaf 2)[OK]$(tput sgr0)" ERROR="$(tput setaf 1)[ERROR]$(tput sgr0)" @@ -20,7 +18,6 @@ ORANGE=$(tput setaf 166) YELLOW=$(tput setaf 3) RESET=$(tput sgr0) - # Create Directory for Install Logs if [ ! -d Install-Logs ]; then mkdir Install-Logs @@ -28,7 +25,6 @@ fi # Check for AUR helper and install if not found ISAUR=$(command -v yay || command -v paru) - if [ -n "$ISAUR" ]; then printf "\n%s - AUR helper already installed, moving on.\n" "${OK}" else