summaryrefslogtreecommitdiff
path: root/tools/get-scala-commit-sha.bat
blob: 80d9aa34b1269896e2e3cd75119cdbb8ece70fc2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
@echo off
rem
rem Usage: get-scala-commit-drift.bat [dir]
rem Figures out current scala commit drift, of a 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 - truncate chars.
git log -1 --format="%T"

:end
@endlocal