diff options
author | Safwat Halaby <SafwatHalaby@users.noreply.github.com> | 2015-09-25 14:33:06 +0200 |
---|---|---|
committer | Safwat Halaby <SafwatHalaby@users.noreply.github.com> | 2015-09-25 14:33:06 +0200 |
commit | 26dee448f24aca177a7b5c327921ae3f231e91c3 (patch) | |
tree | 5ce66d38d71c315ef7c91c0f55d7175bbe5db628 | |
parent | Merge pull request #2490 from cuberite/cuberite (diff) | |
parent | Compile.sh namechange to cuberite (diff) | |
download | cuberite-26dee448f24aca177a7b5c327921ae3f231e91c3.tar cuberite-26dee448f24aca177a7b5c327921ae3f231e91c3.tar.gz cuberite-26dee448f24aca177a7b5c327921ae3f231e91c3.tar.bz2 cuberite-26dee448f24aca177a7b5c327921ae3f231e91c3.tar.lz cuberite-26dee448f24aca177a7b5c327921ae3f231e91c3.tar.xz cuberite-26dee448f24aca177a7b5c327921ae3f231e91c3.tar.zst cuberite-26dee448f24aca177a7b5c327921ae3f231e91c3.zip |
Diffstat (limited to '')
-rwxr-xr-x | compile.sh | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/compile.sh b/compile.sh index f7e9591bd..fae149667 100755 --- a/compile.sh +++ b/compile.sh @@ -177,17 +177,21 @@ echo # Echo: Compilation complete. -popd -pushd cuberite/MCServer +popd > /dev/null +pushd cuberite/Server > /dev/null echo echo "-----------------" echo "Compilation done!" echo echo "Cuberite awaits you at:" -echo "`pwd`/MCServer" +if [[ $BUILDTYPE == "Debug" ]]; then +echo "`pwd`/Cuberite_debug" +else +echo "`pwd`/Cuberite" +fi echo echo "Enjoy :)" -popd +popd > /dev/null exit 0 :windows_detected |