1
1
Fork 0
mirror of https://github.com/FellippeHeitor/InForm.git synced 2025-01-15 11:59:34 +00:00

Update Linux script (line endings).

This commit is contained in:
FellippeHeitor 2017-03-22 09:41:43 -03:00
parent 85c9f97383
commit 7f837f14e2

View file

@ -1,20 +1,20 @@
#!/bin/bash #!/bin/bash
# InForm for QB64 - Setup script # InForm for QB64 - Setup script
if [ -e "./qb64" ]; then if [ -e "./qb64" ]; then
echo "Compiling InForm..." echo "Compiling InForm..."
./qb64 -x ./InForm/UiEditor.bas -o ./UiEditor ./qb64 -x ./InForm/UiEditor.bas -o ./UiEditor
if [ -e "./UiEditor" ]; then if [ -e "./UiEditor" ]; then
echo "Running InForm Designer..." echo "Running InForm Designer..."
./UiEditor & ./UiEditor &
else else
echo "Compilation failed." echo "Compilation failed."
echo "Make sure you unpacked all files in QB64's folder, preserving the directory structure and also that you have version 1.1 of QB64 to use InForm." echo "Make sure you unpacked all files in QB64's folder, preserving the directory structure and also that you have version 1.1 of QB64 to use InForm."
fi fi
else else
echo "Compilation failed." echo "Compilation failed."
echo "Make sure you have version 1.1 of QB64 to use InForm." echo "Make sure you have version 1.1 of QB64 to use InForm."
fi fi
echo echo
echo "Thank you for choosing InForm for QB64." echo "Thank you for choosing InForm for QB64."