Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Valid shebang lines for the setup.sh scripts. #17

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

dflock
Copy link

@dflock dflock commented Dec 15, 2016

If you run the current setup.sh scripts like this:

chmod +x ./setup.sh
./setup.sh

you get this error:

bash: ./setup.sh: /bin/bash;: bad interpreter: No such file or directory

To fix this, you can either remove the trailing semi-colon from the current shebang line:

#!/bin/bash;

or use a better, non-hardcoded shebang:

#!/usr/bin/env bash

which should work on a much wider range of shells.

The current shebang line isn't valid.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant