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
shellcheck raises a few minor issues -- thoughts about #27 ?
$> shellcheck --format gcc entrypoint.sh entrypoint.sh:21:15: note: Use $(...) notation instead of legacy backticks .... [SC2006] entrypoint.sh:23:15: note: Use $(...) notation instead of legacy backticks .... [SC2006] entrypoint.sh:23:21: note: Double quote to prevent globbing and word splitting. [SC2086] entrypoint.sh:23:36: note: Consider using grep -c instead of grep|wc -l. [SC2126] entrypoint.sh:31:16: note: Use $(...) notation instead of legacy backticks .... [SC2006] entrypoint.sh:31:22: note: Double quote to prevent globbing and word splitting. [SC2086] entrypoint.sh:31:37: note: Consider using grep -c instead of grep|wc -l. [SC2126]
...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
shellcheck raises a few minor issues -- thoughts about #27 ?
$> shellcheck --format gcc entrypoint.sh
entrypoint.sh:21:15: note: Use $(...) notation instead of legacy backticks
...
. [SC2006]entrypoint.sh:23:15: note: Use $(...) notation instead of legacy backticks
...
. [SC2006]entrypoint.sh:23:21: note: Double quote to prevent globbing and word splitting. [SC2086]
entrypoint.sh:23:36: note: Consider using grep -c instead of grep|wc -l. [SC2126]
entrypoint.sh:31:16: note: Use $(...) notation instead of legacy backticks
...
. [SC2006]entrypoint.sh:31:22: note: Double quote to prevent globbing and word splitting. [SC2086]
entrypoint.sh:31:37: note: Consider using grep -c instead of grep|wc -l. [SC2126]
The text was updated successfully, but these errors were encountered: