22 lines
602 B
Batchfile
Executable File
22 lines
602 B
Batchfile
Executable File
@ECHO OFF
|
|
REM
|
|
REM File:: update_testing_label.bat
|
|
REM Description:: Update tools testing label to current workspace.
|
|
REM
|
|
REM Author:: David Muir <david.muir@rockstarnorth.com>
|
|
REM Date:: 19 December 2011
|
|
REM
|
|
|
|
CALL setenv.bat >NUL
|
|
CALL ../util/data_get_project_info.bat >NUL
|
|
|
|
SET LABEL=%PERFORCE_TESTING_TOOLS_LABEL_NAME%
|
|
|
|
TITLE %RS_PROJECT% : Updating %LABEL%...
|
|
PUSHD %RS_PROJROOT%
|
|
|
|
REM Update the testing label to the current state of the Workspace.
|
|
%RS_TOOLSROOT%\ironlib\prompt.bat %RS_TOOLSIR% %RS_TOOLSROOT%\ironlib\util\tools_release\update_testing_label.rb
|
|
|
|
PAUSE
|
|
REM Done. |