summaryrefslogtreecommitdiff
path: root/tools/get-scala-revision.bat
diff options
context:
space:
mode:
Diffstat (limited to 'tools/get-scala-revision.bat')
-rw-r--r--tools/get-scala-revision.bat27
1 files changed, 0 insertions, 27 deletions
diff --git a/tools/get-scala-revision.bat b/tools/get-scala-revision.bat
deleted file mode 100644
index b5b30eb3a8..0000000000
--- a/tools/get-scala-revision.bat
+++ /dev/null
@@ -1,27 +0,0 @@
-@echo off
-rem
-rem Usage: get-scala-revison.bat [dir]
-rem Figures out current scala revision of a git clone.
-rem
-rem If no dir is given, current working dir is used.
-
-@setlocal
-set _DIR=
-if "%*"=="" (
- for /f "delims=;" %%i in ('cd') do set "_DIR=%%i"
-) else (
- set "_DIR=%~1"
-)
-cd %_DIR%
-
-rem TODO - Look up bat scripting example and fix the darn string.
-if exist .git\NUL (
- git describe --abbrev=10 --always --tags
-)
-
-rem Implement something like the following
-rem for /f "tokens=1,2,3 delims=- " %%a in ("%gitdescribe%") do set version=%%a&set commits=%%b&set sha=%%c
-rem echo %date?%-%commits%-%sha%
-
-:end
-@endlocal