patched dist script to allow '--nomix'

This commit is contained in:
Chris Forbes
2009-12-05 19:25:52 +13:00
parent 74b7d21d4b
commit 75c1084017

View File

@@ -1,15 +1,17 @@
rmdir /s /q ..\openra-bin @rmdir /s /q ..\openra-bin
mkdir ..\openra-bin @mkdir ..\openra-bin
copy *.mix ..\openra-bin\ @if "%1"=="--nomix" goto nomix
copy *.ini ..\openra-bin\ @copy *.mix ..\openra-bin\
copy *.rem ..\openra-bin\ :nomix
copy *.til ..\openra-bin\ @copy *.ini ..\openra-bin\
copy INSTALL ..\openra-bin\ @copy *.rem ..\openra-bin\
copy LICENSE ..\openra-bin\ @copy *.til ..\openra-bin\
copy *.fx ..\openra-bin\ @copy INSTALL ..\openra-bin\
copy *.xml ..\openra-bin\ @copy LICENSE ..\openra-bin\
copy specialbin.png ..\openra-bin\ @copy *.fx ..\openra-bin\
copy OpenRA.Server\bin\debug\OpenRA.Server ..\openra-bin\ @copy *.xml ..\openra-bin\
copy SequenceEditor\bin\x86\debug\SequenceEditor.exe ..\openra-bin\ @copy specialbin.png ..\openra-bin\
copy OpenRA.Game\bin\x86\debug\*.dll ..\openra-bin\ @copy OpenRA.Server\bin\debug\OpenRA.Server.exe ..\openra-bin\
copy OpenRA.Game\bin\x86\debug\OpenRa.Game.exe ..\openra-bin\ @copy SequenceEditor\bin\x86\debug\SequenceEditor.exe ..\openra-bin\
@copy OpenRA.Game\bin\x86\debug\*.dll ..\openra-bin\
@copy OpenRA.Game\bin\x86\debug\OpenRa.Game.exe ..\openra-bin\