From 49b34452d80c4396a2ee09698ce3170c7466ce6d Mon Sep 17 00:00:00 2001 From: David Young Date: Fri, 5 Jun 2026 15:36:48 -0600 Subject: [PATCH] fix graywolf --- install-compiled.sh | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/install-compiled.sh b/install-compiled.sh index 88b6fe6..c0855d0 100755 --- a/install-compiled.sh +++ b/install-compiled.sh @@ -273,15 +273,14 @@ process_conf() { local key="${line%%=*}" local value="${line#*=}" - value=$(eval echo "$value") case "$key" in - git) git_url="$value" ;; - wget) wget_url="$value" ;; - install) install_path="$value" ;; + git) git_url="$(eval echo "$value")" ;; + wget) wget_url="$(eval echo "$value")" ;; + install) install_path="$(eval echo "$value")" ;; steps) steps="$value" ;; version) version="$value" ;; - desktop) desktop="$value" ;; + desktop) desktop="$(eval echo "$value")" ;; gui) gui="$value" ;; esac