We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When I use Shebang as described in README.md, I get an error.
This seems to be a compatibility issue with FishShell at the moment, as it works fine with Bash and Zsh.
I checked the source code of FishShell and I think the problem is here https://github.com/fish-shell/fish-shell/blob/master/src/exec.cpp#L177
Currently still looking for a solution
The text was updated successfully, but these errors were encountered:
I found this. https://stackoverflow.com/a/9988385/2138221
Looks like Mac OS X requires interpreter to be binary, not another script.
I changed Shebang to #!/usr/bin/env /usr/local/bin/c temporarily solved the problem
#!/usr/bin/env /usr/local/bin/c
I hope this solution can help other people like me
Sorry, something went wrong.
@leolovenet by the way, if you use /usr/bin/env in the shebang, you don't need to explicitly type the full path to /usr/local/bin/c.
/usr/bin/env
/usr/local/bin/c
If /usr/local/bin is in your PATH (and it probably is), you can use this shorter shebang:
/usr/local/bin
#!/usr/bin/env c
No branches or pull requests
When I use Shebang as described in README.md, I get an error.
This seems to be a compatibility issue with FishShell at the moment, as it works fine with Bash and Zsh.
I checked the source code of FishShell and I think the problem is here https://github.com/fish-shell/fish-shell/blob/master/src/exec.cpp#L177
Currently still looking for a solution
The text was updated successfully, but these errors were encountered: