From c93af699bd2ae0247109f90636796f83a96b995c Mon Sep 17 00:00:00 2001 From: FellippeHeitor Date: Thu, 24 Mar 2016 08:41:35 -0300 Subject: [PATCH] Add instructions for Linux and OS X users to fix install scripts. Temporary workaround while scripts are being made available with Windows line endings. --- README for Linux and OS X.txt | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 README for Linux and OS X.txt diff --git a/README for Linux and OS X.txt b/README for Linux and OS X.txt new file mode 100644 index 000000000..ac7a94b1f --- /dev/null +++ b/README for Linux and OS X.txt @@ -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 \ No newline at end of file