summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--Install/MCServer_high_detail_debug.cmd (renamed from MCServer_high_detail_debug.cmd)0
-rw-r--r--Install/MCServer_medium_detail_debug.cmd (renamed from MCServer_medium_detail_debug.cmd)0
-rw-r--r--Install/MersenneTwister-LICENSE.txt (renamed from MersenneTwister-LICENSE.txt)0
-rw-r--r--Install/Zip2008.list15
-rw-r--r--Install/Zip2008_PDBs.list3
-rw-r--r--Install/banned.example.ini (renamed from MCServer/banned.example.ini)0
-rw-r--r--Install/groups.example.ini (renamed from MCServer/groups.example.ini)0
-rw-r--r--Install/settings.example.ini (renamed from MCServer/settings.example.ini)0
-rw-r--r--Install/users.example.ini (renamed from MCServer/users.example.ini)0
-rw-r--r--Install/webadmin.example.ini (renamed from MCServer/webadmin.example.ini)0
-rw-r--r--Install/whitelist.example.ini (renamed from MCServer/whitelist.example.ini)0
-rw-r--r--Nightbuild2008.cmd16
12 files changed, 20 insertions, 14 deletions
diff --git a/MCServer_high_detail_debug.cmd b/Install/MCServer_high_detail_debug.cmd
index 384189c42..384189c42 100644
--- a/MCServer_high_detail_debug.cmd
+++ b/Install/MCServer_high_detail_debug.cmd
diff --git a/MCServer_medium_detail_debug.cmd b/Install/MCServer_medium_detail_debug.cmd
index b5bb0954c..b5bb0954c 100644
--- a/MCServer_medium_detail_debug.cmd
+++ b/Install/MCServer_medium_detail_debug.cmd
diff --git a/MersenneTwister-LICENSE.txt b/Install/MersenneTwister-LICENSE.txt
index db62b36c6..db62b36c6 100644
--- a/MersenneTwister-LICENSE.txt
+++ b/Install/MersenneTwister-LICENSE.txt
diff --git a/Install/Zip2008.list b/Install/Zip2008.list
index edc3950c4..369d282b8 100644
--- a/Install/Zip2008.list
+++ b/Install/Zip2008.list
@@ -1,17 +1,16 @@
-MCServer.exe
+..\MCServer\MCServer.exe
+..\MCServer\Plugins
+..\MCServer\webadmin
+..\MCServer\crafting.txt
+..\MCServer\furnace.txt
+..\MCServer\items.ini
+..\MCServer\monsters.ini
MCServer*debug.cmd
-Plugins
-webadmin
-crafting.txt
banned.example.ini
-furnace.txt
groups.example.ini
-items.ini
Lua-LICENSE.txt
MersenneTwister-LICENSE.txt
-monsters.ini
settings.example.ini
-terrain.ini
users.example.ini
webadmin.example.ini
whitelist.example.ini \ No newline at end of file
diff --git a/Install/Zip2008_PDBs.list b/Install/Zip2008_PDBs.list
index 35ffc5919..568858cbb 100644
--- a/Install/Zip2008_PDBs.list
+++ b/Install/Zip2008_PDBs.list
@@ -4,5 +4,4 @@ VC2008\Release\Lua\*.pdb
VC2008\Release\ToLua\*.pdb
VC2008\Release\webserver\*.pdb
VC2008\Release\zlib*.pdb
-source\Bindings.*
-
+source\Bindings.* \ No newline at end of file
diff --git a/MCServer/banned.example.ini b/Install/banned.example.ini
index efe5f51b6..efe5f51b6 100644
--- a/MCServer/banned.example.ini
+++ b/Install/banned.example.ini
diff --git a/MCServer/groups.example.ini b/Install/groups.example.ini
index 7f061204b..7f061204b 100644
--- a/MCServer/groups.example.ini
+++ b/Install/groups.example.ini
diff --git a/MCServer/settings.example.ini b/Install/settings.example.ini
index bfb16c7e6..bfb16c7e6 100644
--- a/MCServer/settings.example.ini
+++ b/Install/settings.example.ini
diff --git a/MCServer/users.example.ini b/Install/users.example.ini
index fae7030f1..fae7030f1 100644
--- a/MCServer/users.example.ini
+++ b/Install/users.example.ini
diff --git a/MCServer/webadmin.example.ini b/Install/webadmin.example.ini
index 6ecbf7513..6ecbf7513 100644
--- a/MCServer/webadmin.example.ini
+++ b/Install/webadmin.example.ini
diff --git a/MCServer/whitelist.example.ini b/Install/whitelist.example.ini
index eb884dcda..eb884dcda 100644
--- a/MCServer/whitelist.example.ini
+++ b/Install/whitelist.example.ini
diff --git a/Nightbuild2008.cmd b/Nightbuild2008.cmd
index 61a622941..6e55ecc50 100644
--- a/Nightbuild2008.cmd
+++ b/Nightbuild2008.cmd
@@ -28,6 +28,9 @@ if %subwcrev%a == a set subwcrev=subwcrev
echo Performing nightbuild of MC-Server
+
+
+
set DONOTPAUSE=y
:: Update the sources to the latest revision:
@@ -50,7 +53,7 @@ echo WCREV = %WCREV%
:: Test if the version is already present
-if exist MCServer_Win_%WCREV%.7z (
+if exist Install\MCServer_Win_%WCREV%.7z (
echo Latest version already present, bailing out
goto end
)
@@ -58,6 +61,8 @@ if exist MCServer_Win_%WCREV%.7z (
:: Update Bindings.cpp
+del source\Bindings.cpp
+del source\Bindings.h
echo Updating Lua bindings
set ALLTOLUA_WAIT=N
cd source
@@ -78,15 +83,18 @@ if errorlevel 1 goto haderror
+
:: Use 7-zip to compress the resulting files into a single file:
:: Note: the output filename here must be the same as in the upload_win.ftp.template script
-copy VC2008\Release\MCServer.exe MCServer.exe
-%zip% a -mx9 -y MCServer_Win_%WCREV%.7z -scsWIN @Install\Zip2008.list
+copy MCServer\MCServer.exe Install\MCServer.exe
+cd Install
+%zip% a -mx9 -y MCServer_Win_%WCREV%.7z -scsWIN @Zip2008.list
if errorlevel 1 goto haderror
+cd ..
:: Also pack PDBs into a separate archive:
:: Note: the output filename here must be the same as in the upload_win.ftp.template script
-%zip% a -mx9 -y MCServer_Win_%WCREV%_PDBs.7z -scsWIN @Install\Zip2008_PDBs.list
+%zip% a -mx9 -y Install\MCServer_Win_%WCREV%_PDBs.7z -scsWIN @Install\Zip2008_PDBs.list
if errorlevel 1 goto haderror