1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-14 00:58:18 -05:00

don't migrate context on MySql

This commit is contained in:
RaidMax
2018-04-07 16:47:21 -05:00
parent a857c43d00
commit d5aa03d277
13 changed files with 89 additions and 84 deletions

View File

@ -1,2 +0,0 @@
xcopy /Y "%1BUILD\Plugins" "%1Publish\Plugins\"
xcopy /Y "%1\SharedLibrary\LibSQLCe\x86" "%1Publish\x86\"

View File

@ -1,9 +1,3 @@
set SolutionDir=%1
set ProjectDir=%2
set TargetDir=%3
if not exist "%TargetDir%x86" (
echo "Copying SQLCe binaries"
md "%TargetDir%x86"
xcopy /y "%SolutionDir%SharedLibrary\LibSQLCe\x86" "%TargetDir%x86\"
)

View File

@ -1,2 +0,0 @@
xcopy /Y "%1BUILD\Plugins" "%1Publish\Plugins\"
xcopy /Y "%1\SharedLibrary\LibSQLCe\x86" "%1Publish\x86\"

View File

@ -5,9 +5,16 @@ set TargetDir=%3
if not exist "%SolutionDir%BUILD" (
echo "Making build dir"
mkdir "%SolutionDir%BUILD"
)
if not exist "%SolutionDir%BUILD\Plugins" (
echo "Making plugin dir"
mkdir "%SolutionDir%BUILD\Plugins"
)
if not exist "%SolutionDir%BUILD\userraw\scripts" (
echo "Making userraw dir"
mkdir "%SolutionDir%BUILD\userraw\scripts"
)
)
copy "%SolutionDir%_customcallbacks.gsc" "%SolutionDir%BUILD\userraw\scripts\_customcallbacks.gsc"