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
wax
The wax file is not a valid shell file.
bin/wax
wax is a valid shell file:
#! /bin/bash exec wapm execute "$@"
wax's shebang is messed up:
#!/bin/bash\nwapm execute "$@"
The text was updated successfully, but these errors were encountered:
Thank you for the bug report.
It's a difference between echo and echo -e in macOS and Linux. Let's fix that!
echo
echo -e
Sorry, something went wrong.
You can just call echo twice.
Also yes, or just do this:
echo "hello world"
Also yes, or just do this: echo "hello world"
Because of indentation, it would actually be:
# ... echo "hello world" # ...
Hywan
Successfully merging a pull request may close this issue.
The
wax
file is not a valid shell file.Steps to reproduce
bin/wax
in a text editor.Expected behavior
wax
is a valid shell file:Actual behavior
wax
's shebang is messed up:The text was updated successfully, but these errors were encountered: