From a0e6dc56f21898f7eadd2e04337977f2e17f0e76 Mon Sep 17 00:00:00 2001 From: Myk Taylor Date: Wed, 10 Apr 2024 18:39:17 -0700 Subject: [PATCH] add missing quotes around potentially undefined var --- package/linux/dfhack | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/linux/dfhack b/package/linux/dfhack index faea715d38..5500db7a8e 100755 --- a/package/linux/dfhack +++ b/package/linux/dfhack @@ -124,7 +124,7 @@ case "$1" in ;; *) TARGET=./dwarfort - if [ $SteamAppId = 2346660 ]; then + if [ "$SteamAppId" = 2346660 ]; then TARGET=hack/launchdf fi setarch "$setarch_arch" -R env LD_PRELOAD="${LD_PRELOAD:+$LD_PRELOAD:}$PRELOAD_LIB" $TARGET "$@"