summaryrefslogtreecommitdiff
path: root/tools/get-scala-commit-date
diff options
context:
space:
mode:
authorJosh Suereth <joshua.suereth@gmail.com>2012-03-16 01:05:31 -0400
committerJosh Suereth <joshua.suereth@gmail.com>2012-03-16 12:08:42 -0400
commit1d8037bbf56b303d69cd3e8faafc05fc5fc5db3e (patch)
tree29f06951c7ee8c161906a50ec0cfcab61ef09ea0 /tools/get-scala-commit-date
parent479aee3617e952d8705b95ef2ea3a155914dd03c (diff)
downloadscala-1d8037bbf56b303d69cd3e8faafc05fc5fc5db3e.tar.gz
scala-1d8037bbf56b303d69cd3e8faafc05fc5fc5db3e.tar.bz2
scala-1d8037bbf56b303d69cd3e8faafc05fc5fc5db3e.zip
Finished migrating to new versioning scheme
Conflicts: build.xml tools/get-scala-revision.bat
Diffstat (limited to 'tools/get-scala-commit-date')
-rwxr-xr-xtools/get-scala-commit-date16
1 files changed, 16 insertions, 0 deletions
diff --git a/tools/get-scala-commit-date b/tools/get-scala-commit-date
new file mode 100755
index 0000000000..ef5b0f540d
--- /dev/null
+++ b/tools/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//-/}"