From f15a28f3ec7169ec27c044f54cb0f828cc4d7167 Mon Sep 17 00:00:00 2001 From: Duke Date: Sun, 14 Jan 2024 09:21:57 -0500 Subject: [PATCH] Fix bug in reporting version being compiled in build.sh --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index af3dc3b..6dc0e9d 100755 --- a/build.sh +++ b/build.sh @@ -29,7 +29,7 @@ then exit 1 fi -VERSION=$(cat src/version.h |cut -d\" -f2) +VERSION=$(grep APP_VERSION src/version.h |cut -d\" -f2) echo "Compiling SilentDragonLite $VERSION on $UNAME with args=$@" CONF=silentdragon-lite.pro