summaryrefslogtreecommitdiff
path: root/tools/get-scala-revision.bat
blob: b5b30eb3a8cb78d0e2782240f645fe400d433e44 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
@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