summaryrefslogtreecommitdiffstats
path: root/Nightbuild2008.cmd
diff options
context:
space:
mode:
authorworktycho <work.tycho@gmail.com>2013-12-09 18:51:12 +0100
committerworktycho <work.tycho@gmail.com>2013-12-09 18:51:12 +0100
commit843605d59ebc128be0a578dc6f45ef8c05da6e79 (patch)
tree3ffebc6ba27baf7a9e1d4bc51501ffeea9b14226 /Nightbuild2008.cmd
parentmerged makefile changes (diff)
parentFix Undefined behavior at Bindings/LuaWindow line 32 (diff)
downloadcuberite-843605d59ebc128be0a578dc6f45ef8c05da6e79.tar
cuberite-843605d59ebc128be0a578dc6f45ef8c05da6e79.tar.gz
cuberite-843605d59ebc128be0a578dc6f45ef8c05da6e79.tar.bz2
cuberite-843605d59ebc128be0a578dc6f45ef8c05da6e79.tar.lz
cuberite-843605d59ebc128be0a578dc6f45ef8c05da6e79.tar.xz
cuberite-843605d59ebc128be0a578dc6f45ef8c05da6e79.tar.zst
cuberite-843605d59ebc128be0a578dc6f45ef8c05da6e79.zip
Diffstat (limited to 'Nightbuild2008.cmd')
-rw-r--r--Nightbuild2008.cmd12
1 files changed, 6 insertions, 6 deletions
diff --git a/Nightbuild2008.cmd b/Nightbuild2008.cmd
index 6de8d9f67..ad0b415ba 100644
--- a/Nightbuild2008.cmd
+++ b/Nightbuild2008.cmd
@@ -45,9 +45,9 @@ echo Performing nightbuild of MC-Server
set DONOTPAUSE=y
:: Update the sources to the latest revision:
-del source\Bindings.cpp
-del source\Bindings.h
-git checkout -- source\Bindings.*
+del src\Bindings.cpp
+del src\Bindings.h
+git checkout -- src\Bindings.*
git pull
if errorlevel 1 goto haderror
@@ -78,11 +78,11 @@ if exist %TAGFILE% (
:: Update the Bindings:
-del source\Bindings.cpp
-del source\Bindings.h
+del src\Bindings.cpp
+del src\Bindings.h
echo Updating Lua bindings
set ALLTOLUA_WAIT=N
-cd source
+cd src
call AllToLua.bat
cd ..