Browse Source

Fix typo in GIT_SHA collection

jcmdln 1 year ago
parent
commit
b25fba6175
1 changed files with 1 additions and 1 deletions
  1. 1 1
      build_odin.sh

+ 1 - 1
build_odin.sh

@@ -15,7 +15,7 @@ OS_ARCH="$(uname -m)"
 OS_NAME="$(uname -s)"
 
 if [ -d ".git" ] && [ -n "$(command -v git)" ]; then
-	GIT_SHA=($(git show --pretty='%h'--no-patch --no-notes HEAD))
+	GIT_SHA=($(git show --pretty='%h' --no-patch --no-notes HEAD))
 	CPPFLAGS="$CPPFLAGS -DGIT_SHA=\"$GIT_SHA\""
 fi