summaryrefslogtreecommitdiff
path: root/tools/get-scala-commit-date
diff options
context:
space:
mode:
authorJosh Suereth <joshua.suereth@gmail.com>2012-03-20 08:57:44 -0400
committerJosh Suereth <joshua.suereth@gmail.com>2012-03-20 08:57:44 -0400
commit62422f3a54d157fb3280ee51a62b7cfe5b759acb (patch)
treebab58b162d6e5417ec902ef3120e00e3542192b6 /tools/get-scala-commit-date
parentfb44bb28b8b3e7861b96c874dc79072f89fec10b (diff)
downloadscala-62422f3a54d157fb3280ee51a62b7cfe5b759acb.tar.gz
scala-62422f3a54d157fb3280ee51a62b7cfe5b759acb.tar.bz2
scala-62422f3a54d157fb3280ee51a62b7cfe5b759acb.zip
Yet another attempt to make the version a good one
This fixes the git commit drift issue and gives us enough granularity to make releases at any time that are cronologically increasing.
Diffstat (limited to 'tools/get-scala-commit-date')
-rwxr-xr-xtools/get-scala-commit-date3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/get-scala-commit-date b/tools/get-scala-commit-date
index ef5b0f540d..b2e4e10770 100755
--- a/tools/get-scala-commit-date
+++ b/tools/get-scala-commit-date
@@ -11,6 +11,7 @@
[[ $# -eq 0 ]] || cd "$1"
lastcommitdate=$(git log --format="%ci" HEAD | head -n 1 | cut -d ' ' -f 1)
+lastcommithours=$(git log --format="%ci" HEAD | head -n 1 | cut -d ' ' -f 2)
# 20120324
-echo "${lastcommitdate//-/}"
+echo "${lastcommitdate//-/}-${lastcommithours//:/}"