summaryrefslogtreecommitdiff
path: root/tools/get-scala-revision.bat
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2011-12-05 07:12:31 -0800
committerPaul Phillips <paulp@improving.org>2011-12-05 07:18:37 -0800
commit340bb43e884319824c9f9c6234f0a17fd3b1bfe3 (patch)
tree5f175573fbbf1d449649cdcd575823ee21247faa /tools/get-scala-revision.bat
parenta289465c70630719cbd3a74edf5502a156ef83c4 (diff)
downloadscala-340bb43e884319824c9f9c6234f0a17fd3b1bfe3.tar.gz
scala-340bb43e884319824c9f9c6234f0a17fd3b1bfe3.tar.bz2
scala-340bb43e884319824c9f9c6234f0a17fd3b1bfe3.zip
Tweaks to get-scala-revision.
Reference to git head is supposed to be HEAD, not head. Also apparently [[ <test> ]] is a bashism so it's [ <test> ]. Made name generation robust against the absence of the dev tag; it will generate a similar name even if it's not there, minus the part it can't determine without it.
Diffstat (limited to 'tools/get-scala-revision.bat')
-rw-r--r--tools/get-scala-revision.bat2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/get-scala-revision.bat b/tools/get-scala-revision.bat
index ed3ade8a3e..1c2403da89 100644
--- a/tools/get-scala-revision.bat
+++ b/tools/get-scala-revision.bat
@@ -15,7 +15,7 @@ if "%*"=="" (
cd %_DIR%
if exist .git\NUL (
- git describe head --abbrev=7 --match dev
+ git describe HEAD --abbrev=7 --match dev
echo 0
)