summaryrefslogtreecommitdiffstats
path: root/util/scripts/win-binary/batch/log.bat
blob: 6186ff125e0149af988c6486a64d749268998268 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
call :%1 %2
goto END

:file
set IWMAKE_LOGFILE=%IWMAKE_ROOT%\%~1
call :reset
goto :eof

:fileAbs
set IWMAKE_LOGFILE=%1
call :reset
goto :eof

:reset
date /T > %IWMAKE_LOGFILE%
goto :eof

:END