summaryrefslogtreecommitdiff
path: root/printHash.sh
diff options
context:
space:
mode:
authorerorcun <erorcunerorcun@hotmail.com.tr>2021-02-12 17:23:29 +0300
committererorcun <erorcunerorcun@hotmail.com.tr>2021-02-12 21:10:39 +0300
commit80e4b3db55870f4b1947a757843a96909e300206 (patch)
treedc7243decd3ca33ed9c35d7bb1addc3dad19e8e7 /printHash.sh
parent0c60ceeb33c06c17b35773ca4095c2d4c342a0dc (diff)
Fix sha1 on premake linux
Diffstat (limited to 'printHash.sh')
-rwxr-xr-x[-rw-r--r--]printHash.sh6
1 files changed, 2 insertions, 4 deletions
diff --git a/printHash.sh b/printHash.sh
index 7b4453a1..71f54466 100644..100755
--- a/printHash.sh
+++ b/printHash.sh
@@ -1,12 +1,10 @@
-#!/usr/bin/bash
+#!/bin/bash
> $1
echo -n "#define GIT_SHA1 \"" > $1
-git --version 2>&1 >/dev/null
-GIT_IS_AVAILABLE=$?
-if [ $GIT_IS_AVAILABLE -ne 0 ]; then
+if (command -v "git" >/dev/null) then
git rev-parse --short HEAD | tr -d '\n' >> $1
fi