mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-06 15:29:02 +00:00
16 lines
271 B
Batchfile
16 lines
271 B
Batchfile
|
@echo off
|
||
|
|
||
|
SET COPYCMD=/Y
|
||
|
|
||
|
REM -- Backup config files
|
||
|
copy cfg\*.cfg cfg\*.bak
|
||
|
|
||
|
REM -- Copy tools
|
||
|
xcopy \\server\code\tools\build_gamedata\*.* . /E /D
|
||
|
|
||
|
REM -- Restore config files
|
||
|
copy cfg\*.bak cfg\*.cfg
|
||
|
|
||
|
REM -- Delete backuped config files
|
||
|
del cfg\*.bak
|