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 error message:
[ "${@:2:1}" ]] && printf ' %s\n' "${@:2}" ^-- [SC2199](https://www.shellcheck.net/wiki/SC2199) (error): Arrays implicitly concatenate in [[ ]]. Use a loop (or explicit * instead of @).
Appears to miss the fact that this is a single value and there's no concatenation possible, i.e., because of the special case of "$@".
"$@"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For bugs
the error message:
Appears to miss the fact that this is a single value and there's no concatenation possible, i.e., because of the special case of
"$@"
.The text was updated successfully, but these errors were encountered: