summaryrefslogtreecommitdiffstats
path: root/Nightbuild2008.cmd
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2014-01-09 09:45:21 +0100
committermadmaxoft <github@xoft.cz>2014-01-09 09:47:16 +0100
commit4a1b78787f3982859efb9f27c5b22ebc21388a43 (patch)
tree9702a1025d1c68938a9325a6c8572fa488effffd /Nightbuild2008.cmd
parentMerge pull request #517 from derouinw/master (diff)
downloadcuberite-4a1b78787f3982859efb9f27c5b22ebc21388a43.tar
cuberite-4a1b78787f3982859efb9f27c5b22ebc21388a43.tar.gz
cuberite-4a1b78787f3982859efb9f27c5b22ebc21388a43.tar.bz2
cuberite-4a1b78787f3982859efb9f27c5b22ebc21388a43.tar.lz
cuberite-4a1b78787f3982859efb9f27c5b22ebc21388a43.tar.xz
cuberite-4a1b78787f3982859efb9f27c5b22ebc21388a43.tar.zst
cuberite-4a1b78787f3982859efb9f27c5b22ebc21388a43.zip
Diffstat (limited to 'Nightbuild2008.cmd')
-rw-r--r--Nightbuild2008.cmd27
1 files changed, 20 insertions, 7 deletions
diff --git a/Nightbuild2008.cmd b/Nightbuild2008.cmd
index f3f1ca4cb..8dcd5dc46 100644
--- a/Nightbuild2008.cmd
+++ b/Nightbuild2008.cmd
@@ -44,6 +44,7 @@ if "a%ftpsite%" == "a" (
:: Get the date and time into vars:
+:: This is locale-dependent!
For /f "tokens=2-4 delims=/. " %%a in ('date /t') do (
set MYYEAR=%%c
set MYMONTH=%%b
@@ -66,13 +67,11 @@ if errorlevel 1 goto haderror
:: Update the external plugins to the latest revision:
-cd MCServer\Plugins\Core
-git pull
-if errorlevel 1 goto haderror
-cd ..\ProtectionAreas
-git pull
+git submodule update
if errorlevel 1 goto haderror
-cd ..\..\..
+
+
+
:: Get the Git commit ID into an environment var
For /f "tokens=1 delims=/. " %%a in ('git log -1 --oneline --no-abbrev-commit') do (set COMMITID=%%a)
@@ -114,9 +113,23 @@ if errorlevel 1 goto haderror
+:: Generate the .example.ini files by running the server without any ini files:
+cd MCServer
+del groups.ini
+del settings.ini
+del webadmin.ini
+echo stop | MCServer
+cd ..
+
+
:: Copy all the example ini files into the Install folder for zipping:
-copy MCServer\*.example.ini Install\
+copy MCServer\groups.ini Install\groups.example.ini
+copy MCServer\settings.ini Install\settings.example.ini
+copy MCServer\webadmin.ini Install\webadmin.example.ini
+
+
+
:: Use 7-zip to compress the resulting files into a single file:
set FILESUFFIX=%MYYEAR%_%MYMONTH%_%MYDAY%_%MYTIME%_%COMMITID%