summaryrefslogtreecommitdiffstats
path: root/Nightbuild2008.cmd
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2013-08-16 10:17:37 +0200
committermadmaxoft <github@xoft.cz>2013-08-16 10:17:37 +0200
commit26b56689a68fd1e068512abd29cfd14c602e6e63 (patch)
tree76b7a79282dd6eb6bcdedfc70b8014c16979a573 /Nightbuild2008.cmd
parentMoved ProtectionAreas into a separate repository (diff)
downloadcuberite-26b56689a68fd1e068512abd29cfd14c602e6e63.tar
cuberite-26b56689a68fd1e068512abd29cfd14c602e6e63.tar.gz
cuberite-26b56689a68fd1e068512abd29cfd14c602e6e63.tar.bz2
cuberite-26b56689a68fd1e068512abd29cfd14c602e6e63.tar.lz
cuberite-26b56689a68fd1e068512abd29cfd14c602e6e63.tar.xz
cuberite-26b56689a68fd1e068512abd29cfd14c602e6e63.tar.zst
cuberite-26b56689a68fd1e068512abd29cfd14c602e6e63.zip
Diffstat (limited to 'Nightbuild2008.cmd')
-rw-r--r--Nightbuild2008.cmd11
1 files changed, 10 insertions, 1 deletions
diff --git a/Nightbuild2008.cmd b/Nightbuild2008.cmd
index 11e2b3683..0d93380e9 100644
--- a/Nightbuild2008.cmd
+++ b/Nightbuild2008.cmd
@@ -53,6 +53,15 @@ 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
+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)
if errorlevel 1 goto haderror
@@ -100,7 +109,7 @@ set FILESUFFIX=%MYYEAR%_%MYMONTH%_%MYDAY%_%MYTIME%_%COMMITID%
echo FILESUFFIX=%FILESUFFIX%
copy MCServer\MCServer.exe Install\MCServer.exe
cd Install
-%zip% a -mx9 -y MCServer_Win_%FILESUFFIX%.7z -scsWIN @Zip2008.list
+%zip% a -mx9 -y MCServer_Win_%FILESUFFIX%.7z -scsWIN -i@Zip2008.list -xr!*.git*
if errorlevel 1 goto haderror
cd ..