mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-05 23:09:02 +00:00
15 lines
271 B
Batchfile
15 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
|