diff options
author | Safwat Halaby <SafwatHalaby@users.noreply.github.com> | 2015-09-25 18:01:11 +0200 |
---|---|---|
committer | Safwat Halaby <SafwatHalaby@users.noreply.github.com> | 2015-09-26 07:47:51 +0200 |
commit | 2378e2a22ec594fe72ca2e9c4669209e183d541b (patch) | |
tree | 134a1259e2dee011d901a995fe9bcbc322638055 | |
parent | Merge pull request #2463 from cuberite/fixes (diff) | |
download | cuberite-2378e2a22ec594fe72ca2e9c4669209e183d541b.tar cuberite-2378e2a22ec594fe72ca2e9c4669209e183d541b.tar.gz cuberite-2378e2a22ec594fe72ca2e9c4669209e183d541b.tar.bz2 cuberite-2378e2a22ec594fe72ca2e9c4669209e183d541b.tar.lz cuberite-2378e2a22ec594fe72ca2e9c4669209e183d541b.tar.xz cuberite-2378e2a22ec594fe72ca2e9c4669209e183d541b.tar.zst cuberite-2378e2a22ec594fe72ca2e9c4669209e183d541b.zip |
-rwxr-xr-x | compile.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/compile.sh b/compile.sh index fae149667..19d49b6b2 100755 --- a/compile.sh +++ b/compile.sh @@ -164,10 +164,9 @@ git submodule update --init # Cmake. echo " --- Running cmake..." -popd if [ ! -d build-cuberite ]; then mkdir build-cuberite; fi pushd build-cuberite -cmake ../cuberite/ -DCMAKE_BUILD_TYPE=$BUILDTYPE || error "cmake failed" +cmake .. -DCMAKE_BUILD_TYPE=$BUILDTYPE || error "cmake failed" # Make. @@ -178,7 +177,7 @@ echo # Echo: Compilation complete. popd > /dev/null -pushd cuberite/Server > /dev/null +pushd Server > /dev/null echo echo "-----------------" echo "Compilation done!" @@ -192,6 +191,7 @@ fi echo echo "Enjoy :)" popd > /dev/null +popd > /dev/null exit 0 :windows_detected |