Fix typo in GIT_SHA collection

This commit is contained in:
jcmdln
2023-10-14 18:10:42 -04:00
parent afcdbf1ba6
commit b25fba6175
+1 -1
View File
@@ -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