aboutsummaryrefslogtreecommitdiff
path: root/scripts/build/get-scala-commit-sha
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/build/get-scala-commit-sha')
-rwxr-xr-xscripts/build/get-scala-commit-sha18
1 files changed, 18 insertions, 0 deletions
diff --git a/scripts/build/get-scala-commit-sha b/scripts/build/get-scala-commit-sha
new file mode 100755
index 000000000..eab90a421
--- /dev/null
+++ b/scripts/build/get-scala-commit-sha
@@ -0,0 +1,18 @@
+#!/usr/bin/env bash
+#
+# Usage: get-scala-commit-sha [dir]
+# Figures out current commit sha of a git clone.
+# If no dir is given, current working dir is used.
+#
+# Example build version string:
+# 6f1c486d0ba
+#
+
+[[ $# -eq 0 ]] || cd "$1"
+
+# printf %016s is not portable for 0-padding, has to be a digit.
+# so we're stuck disassembling it.
+hash=$(git log -1 --format="%H" HEAD)
+hash=${hash#g}
+hash=${hash:0:10}
+echo "$hash"