We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
I have a file called build-dry.sh, and it looks like this:
build-dry.sh
source common.sh export NIX_TESTS_CA_BY_DEFAULT=1 cd .. && source build-dry.sh
When I run shellcheck on it, it blocks forever. I believe it is recursively checking itself? Is there a way to ask it to not follow that source?
The text was updated successfully, but these errors were encountered:
...I worked around it like this:
# shellcheck disable=SC1091 source=/.. cd .. && source build-dry.sh
Sorry, something went wrong.
I'm unable to reproduce this as described with shellcheck -x build-dry.sh. Which version are you using?
shellcheck -x build-dry.sh
hmmm.... v0.10.0. It is on https://github.com/DeterminateSystems/nix-src/blob/852075ec9d44f41083b8a6c107cc69335864e223/tests/functional/ca/build-dry.sh this file specifically:
Grahams-MacBook-Pro:nix-src grahamc$ shellcheck tests/functional/ca/build-dry.sh <stalls forever at 100% cpu>
No branches or pull requests
I have a file called
build-dry.sh
, and it looks like this:When I run shellcheck on it, it blocks forever. I believe it is recursively checking itself? Is there a way to ask it to not follow that source?
The text was updated successfully, but these errors were encountered: