[TeamTalk 354]: [890] trunk/usarsim/System/copy_bins.bat: 1) Adding a script that given a path to a shared directory will copy all of the the built USARSim binaries to the local Unreal Tournament system directory .
bfrisch@edam.speech.cs.cmu.edu
bfrisch at edam.speech.cs.cmu.edu
Wed Dec 26 17:17:23 EST 2007
An HTML attachment was scrubbed...
URL: http://mailman.srv.cs.cmu.edu/pipermail/teamtalk-developers/attachments/20071226/aa9ef628/attachment.html
-------------- next part --------------
Added: trunk/usarsim/System/copy_bins.bat
===================================================================
--- trunk/usarsim/System/copy_bins.bat (rev 0)
+++ trunk/usarsim/System/copy_bins.bat 2007-12-26 22:17:23 UTC (rev 890)
@@ -0,0 +1,39 @@
+:: Given a UNC Path this script will copy all recently built binary files from the server.
+
+if not exist ut2004.exe goto Error
+
+if %1=="" echo Usage copy_bins.bat UNCPathToServer
+if %1=="/?" echo Usage copy_bins.bat UNCPathToServer
+if %1=="\?" echo Usage copy_bins.bat UNCPathToServer
+
+echo Copying built code from %1
+
+copy %1\TreasureHunt.u TreasureHunt.u
+copy %1\TreasureHunt.ucl TreasureHunt.ucl
+
+copy %1\USARBot.u USARBot.u
+copy %1\USARBot.ucl USARBot.ucl
+
+copy %1\USARBotAPI.u USARBotAPI.u
+copy %1\USARBotAPI.u USARBotAPI.ucl
+
+copy %1\USARMisPkg.u USARMisPkg.u
+
+copy %1\USARModels.u USARModels.u
+
+copy %1\USARVictims.u USARVictims.u
+
+echo Copy complete.
+goto pause
+
+:Error message that says that the script was run outside of the TeamTalk directory.
+echo.
+echo This script must be run with the current directory being that of the script.
+echo (For example, click directly on the script in Windows Explorer instead of
+echo entering the full path to the script at the command prompt.)
+echo.
+echo If this is not the case, please contact bfrisch at gmail.com.
+echo.
+
+:pause
+pause
\ No newline at end of file
More information about the TeamTalk-developers
mailing list