1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-01 11:30:37 +00:00

Add instructions for Linux and OS X users to fix install scripts.

Temporary workaround while scripts are being made available with Windows line endings.
This commit is contained in:
FellippeHeitor 2016-03-24 08:41:35 -03:00
parent 310eb662d0
commit c93af699bd

View file

@ -0,0 +1,12 @@
If you have problems running the install scripts under Linux (./setup_lnx.sh) or OS X (./setup_osx.command), run the following line in terminal, from your QB64 folder:
For Linux:
find . -name '*.sh' -exec sed -i "s/\r//g" {} \;
For OS X (don't forget you need to have Xcode installed to use QB64):
find . -name '*.command' -exec perl -pi -e 's/\r\n|\n|\r/\n/g' {} \;
If you have any other issues, check out the Forum:
http://www.qb64.net/forum/
http://www.qb64.net/forum/index.php?topic=13359.msg115525#msg115525