aboutsummaryrefslogtreecommitdiff
path: root/scripts/build/get-scala-commit-date
diff options
context:
space:
mode:
authorFelix Mulder <felix.mulder@gmail.com>2016-06-08 10:50:38 +0200
committerFelix Mulder <felix.mulder@gmail.com>2016-06-09 11:38:40 +0200
commita00a972c7425232432364bf991e118d248578f0d (patch)
tree6a59f3ec71facdbea462773c6b2e5d1a65b6c9ac /scripts/build/get-scala-commit-date
parentfbf44ebaf4ae80cbc10613b759beb1f0167b19c6 (diff)
downloaddotty-a00a972c7425232432364bf991e118d248578f0d.tar.gz
dotty-a00a972c7425232432364bf991e118d248578f0d.tar.bz2
dotty-a00a972c7425232432364bf991e118d248578f0d.zip
Add date and hash to publishing version
Diffstat (limited to 'scripts/build/get-scala-commit-date')
-rwxr-xr-xscripts/build/get-scala-commit-date16
1 files changed, 16 insertions, 0 deletions
diff --git a/scripts/build/get-scala-commit-date b/scripts/build/get-scala-commit-date
new file mode 100755
index 000000000..ef5b0f540
--- /dev/null
+++ b/scripts/build/get-scala-commit-date
@@ -0,0 +1,16 @@
+#!/usr/bin/env bash
+#
+# Usage: get-scala-commit-date [dir]
+# Figures out current commit date of a git clone.
+# If no dir is given, current working dir is used.
+#
+# Example build version string:
+# 20120312
+#
+
+[[ $# -eq 0 ]] || cd "$1"
+
+lastcommitdate=$(git log --format="%ci" HEAD | head -n 1 | cut -d ' ' -f 1)
+
+# 20120324
+echo "${lastcommitdate//-/}"