From 305b90755b5202ed9a1e4edef3935b9af0288067 Mon Sep 17 00:00:00 2001 From: David Young Date: Fri, 5 Jun 2026 15:40:10 -0600 Subject: [PATCH] fix graywolf --- install-compiled.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install-compiled.sh b/install-compiled.sh index c0855d0..02d16fd 100755 --- a/install-compiled.sh +++ b/install-compiled.sh @@ -205,7 +205,8 @@ run_steps() { echo " Building $app..." IFS=',' read -ra step_list <<< "$steps" for step in "${step_list[@]}"; do - step=$(echo "$step" | xargs) + step="${step#"${step%%[![:space:]]*}"}" + step="${step%"${step##*[![:space:]]}"}" echo " Running: $step" eval "$step" done