summaryrefslogtreecommitdiffstats
path: root/printHash.sh
diff options
context:
space:
mode:
authorerorcun <erorcunerorcun@hotmail.com.tr>2021-02-11 23:49:09 +0100
committererorcun <erorcunerorcun@hotmail.com.tr>2021-02-12 19:09:23 +0100
commit2c784d979a88035176082edf986a2c02b9073338 (patch)
treec44455912d2de60f4c0381c035d44b997c525cbc /printHash.sh
parentSync aspect ratio setting with master (diff)
downloadre3-2c784d979a88035176082edf986a2c02b9073338.tar
re3-2c784d979a88035176082edf986a2c02b9073338.tar.gz
re3-2c784d979a88035176082edf986a2c02b9073338.tar.bz2
re3-2c784d979a88035176082edf986a2c02b9073338.tar.lz
re3-2c784d979a88035176082edf986a2c02b9073338.tar.xz
re3-2c784d979a88035176082edf986a2c02b9073338.tar.zst
re3-2c784d979a88035176082edf986a2c02b9073338.zip
Diffstat (limited to 'printHash.sh')
-rw-r--r--printHash.sh14
1 files changed, 14 insertions, 0 deletions
diff --git a/printHash.sh b/printHash.sh
new file mode 100644
index 00000000..7b4453a1
--- /dev/null
+++ b/printHash.sh
@@ -0,0 +1,14 @@
+#!/usr/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
+git rev-parse --short HEAD | tr -d '\n' >> $1
+fi
+
+echo "\"" >> $1
+echo "const char* g_GIT_SHA1 = GIT_SHA1;" >> $1 \ No newline at end of file