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
The install.sh script refers twice to the command err:
install.sh
err
$ grep -n err install.sh 114: err "Need '$1' (command not found)" 127: err "Need '$1' (command not found)"
However, said err command is not defined in the install script itself, neither is it a builtin in POSIX compliant shells.
It could be as simple as:
err() { echo "$@" >&2 exit 1 }
Please note, though, that the variable '$1' will never be expanded since it is enclosed in single quotes in the original script.
'$1'
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The
install.sh
script refers twice to the commanderr
:However, said
err
command is not defined in the install script itself, neither is it a builtin in POSIX compliant shells.It could be as simple as:
Please note, though, that the variable
'$1'
will never be expanded since it is enclosed in single quotes in the original script.The text was updated successfully, but these errors were encountered: