1
0
Fork 0

Fixed windows hack in Compile.sh (#4834)

the exit command causes the entire shell to close before the user can read the message. Clear added to get rid of console spam from not windows cmds
This commit is contained in:
Azurethi 2020-08-26 11:42:51 +01:00 committed by GitHub
parent fa917259a5
commit d2de029c02
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -516,9 +516,10 @@ exit 0
# Called via hack in line 2.
:windows_detected
@echo off
cls
echo This script is not available for Windows yet, sorry.
echo You can still download the Windows binaries from: https://cuberite.org/
echo You can also manually compile for Windows. See: https://github.com/cuberite/cuberite
rem windows_exit
exit
goto :EOF
}