mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
339 B
21 lines
339 B
@echo off
|
|
setlocal enableextensions
|
|
|
|
set COPYCMD=xcopy /e /c /i /q /h /k
|
|
|
|
set BUILDDIR=%1
|
|
set FREEZERDIR=%2
|
|
|
|
if '%BUILDDIR%' == '' goto Usage
|
|
if '%FREEZERDIR%' == '' goto Usage
|
|
|
|
echo Copying %BUILDDIR% to %FREEZERDIR%...
|
|
%COPYCMD% %BUILDDIR% %FREEZERDIR%
|
|
|
|
goto End
|
|
|
|
:Usage
|
|
echo Usage: FreezeBuild.cmd BuildRootDir FreezerDir
|
|
|
|
:End
|
|
endlocal
|