1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-01 09:10:37 +00:00

Changes macOS setup script to +

+ attempt to install Xcode command line tools when not present.
This commit is contained in:
FellippeHeitor 2020-01-19 11:08:08 -03:00
parent d9ee85ac92
commit 851fcb2397

View file

@ -16,8 +16,9 @@ rm ./internal/temp/*
if [ -z "$(which g++)" ]; then
echo "GNU C++ compiler not detected (g++)"
echo "Please install Apple's Command Line Tools for Xcode"
echo "before launching QB64 setup."
echo "Attempting to install Apple's Command Line Tools for Xcode..."
echo "After installation is finished, run this setup script again."
xcode-select --install
Pause
exit 1
fi