From d34c74f6173db66f447eb15babd0282d57ee1cad Mon Sep 17 00:00:00 2001 From: Creeper Lv Date: Sat, 11 Apr 2026 12:53:18 +0800 Subject: [PATCH] Update build script. --- build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index 2319d98..9bf9a56 100755 --- a/build.sh +++ b/build.sh @@ -10,7 +10,7 @@ if [ -d ".git" ]; then echo "Project is tracked by git!" git_str=$(git log | head -n 1 | cut -c 8-16) - echo $git_str + echo "Build Commit: $git_str" else echo "Project is not tracked by git!" git_str="" @@ -19,7 +19,7 @@ fi if [ -z "$SKIP_STANDALONE"]; then EXEC="$CC Source/Standalone/*.c Source/VM/*.c -DVER=\"$git_str\" -o Binaries/Sagittarius" - echo "[$INDEX]$EXEC" + echo "[$INDEX] $EXEC" INDEX=$((INDEX+1)) $EXEC fi