summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormssx86 <mss@tutanota.de>2021-07-01 19:14:46 +0200
committerwithmorten <morten.with@gmail.com>2021-07-05 22:40:30 +0200
commit37a43ebf45d5e58352b34113b1826b3afba4be67 (patch)
tree709257d0a4d4a59ce9a8f3252e0dc7d2478dba08
parentfix: add missing limits.h includes to enable bulding on musl. (diff)
downloadre3-37a43ebf45d5e58352b34113b1826b3afba4be67.tar
re3-37a43ebf45d5e58352b34113b1826b3afba4be67.tar.gz
re3-37a43ebf45d5e58352b34113b1826b3afba4be67.tar.bz2
re3-37a43ebf45d5e58352b34113b1826b3afba4be67.tar.lz
re3-37a43ebf45d5e58352b34113b1826b3afba4be67.tar.xz
re3-37a43ebf45d5e58352b34113b1826b3afba4be67.tar.zst
re3-37a43ebf45d5e58352b34113b1826b3afba4be67.zip
-rwxr-xr-xprintHash.sh24
1 files changed, 13 insertions, 11 deletions
diff --git a/printHash.sh b/printHash.sh
index e7d6f018..213d9353 100755
--- a/printHash.sh
+++ b/printHash.sh
@@ -1,12 +1,14 @@
-#!/usr/bin/env bash
-
-> $1
-
-echo -n "#define GIT_SHA1 \"" > $1
-
-if (command -v "git" >/dev/null) then
-git rev-parse --short HEAD | tr -d '\n' >> $1
+#!/usr/bin/env sh
+if [ -z "${1}" ]
+ then
+ printf "%s\n" "Input the path to the file for writing the commit hash to."
+ else
+ printf "%s" "#define GIT_SHA1 \"" > $1
+
+ if (command -v "git" >/dev/null) then
+ git rev-parse --short HEAD | tr -d '\n' >> $1
+ fi
+
+ printf "%s\n" "\"" >> $1
+ printf "%s\n" "const char* g_GIT_SHA1 = GIT_SHA1;" >> $1
fi
-
-echo "\"" >> $1
-echo "const char* g_GIT_SHA1 = GIT_SHA1;" >> $1 \ No newline at end of file