2018-08-12 17:34:01 +02:00
|
|
|
REM Create a PTM release
|
|
|
|
|
|
|
|
IF EXIST ..\Release GOTO NOWINRELEASE
|
|
|
|
MD ..\Release
|
|
|
|
|
|
|
|
:NOWINRELEASE
|
|
|
|
IF EXIST ..\Release\Latest GOTO NOWINLATEST
|
|
|
|
MD ..\Release\Latest
|
|
|
|
|
|
|
|
:NOWINLATEST
|
|
|
|
REM Remove previous release
|
|
|
|
CD ..\Release\Latest
|
|
|
|
DEL /F /S /Y *
|
|
|
|
|
|
|
|
REM Copy release files
|
|
|
|
MKDIR PTMagic
|
2018-08-12 17:37:29 +02:00
|
|
|
XCOPY /Y /S ..\..\PTMagic\_defaults\* .\
|
2018-08-12 17:34:01 +02:00
|
|
|
XCOPY /Y /S ..\..\PTMagic\bin\Release\PublishOutput .\PTMagic
|