fix graywolf

This commit is contained in:
David Young
2026-06-05 15:40:10 -06:00
parent 49b34452d8
commit 305b90755b

View File

@@ -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