SubtitleEdit/update_rev.bat

18 lines
332 B
Batchfile

@ECHO OFF
SETLOCAL
PUSHD %~dp0
"src\UpdateAssemblyInfo\bin\Release\UpdateAssemblyInfo.exe" "src\Properties\AssemblyInfo.cs.template" "src\Properties\AssemblyInfo.cs"
IF %ERRORLEVEL% NEQ 0 GOTO SubError
:END
POPD
ENDLOCAL
EXIT /B
:SubError
ECHO Something went wrong when generating the revision number.
EXIT /B