mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
461 B
16 lines
461 B
@echo off
|
|
@rem BCBuild.cmd
|
|
@rem This is a wrapper around build.exe which runs build, then
|
|
@rem connects to the local Build Console and requests that
|
|
@rem it distribute newly published files.
|
|
|
|
build %*
|
|
if errorlevel 1 goto :err
|
|
|
|
cscript %RazzleToolPath%\bcbuild.js //nologo
|
|
goto :Eof
|
|
|
|
:Err
|
|
@echo Build.exe returned %ErrorLevel% - not publishing files.
|
|
@echo To manually run the file publishing phase, type:
|
|
@echo cscript %RazzleToolPath%\bcbuild.js //nologo
|