summaryrefslogtreecommitdiff
path: root/tools/get-scala-commit-sha
diff options
context:
space:
mode:
Diffstat (limited to 'tools/get-scala-commit-sha')
-rwxr-xr-xtools/get-scala-commit-sha18
1 files changed, 0 insertions, 18 deletions
diff --git a/tools/get-scala-commit-sha b/tools/get-scala-commit-sha
deleted file mode 100755
index eab90a4215..0000000000
--- a/tools/get-scala-commit-sha
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/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"