From 8c2bfea5c0cc60e9821b696e6d55dee4c9fafc11 Mon Sep 17 00:00:00 2001 From: PhoenixAceVFX Date: Tue, 4 Mar 2025 22:47:12 -0500 Subject: [PATCH] script(move) `-euo` pipefail to debug arg (#175) apparently this is causing issues, its used mostly for error handling as part of my debugging so we can just move it here --- misc/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/install.sh b/misc/install.sh index 9e6194bf..3b72aa2a 100644 --- a/misc/install.sh +++ b/misc/install.sh @@ -1,5 +1,4 @@ #!/bin/bash -set -euo pipefail # Configuration INSTALLER_PATH="$HOME/.equilotl" @@ -17,6 +16,7 @@ NC='\033[0m' # No Color # Debug logging debug_log() { if $DEBUG; then + set -euo pipefail local timestamp timestamp=$(date +"%Y-%m-%d %T") echo -e "[$timestamp] $1" | tee -a "$LOG_FILE"