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
@reached_if
@reached_if [[ -f "$TERRAFORM_RC" ]] && awk '/^plugin_cache_dir/{exit(0)}END{exit(1)}' "$TERRAFORM_RC"
error:
bash: -c: line 5: syntax error near unexpected token `('
Looks like the problem is that it passes the awk script argument without the quotes:
[[ -f "$TERRAFORM_RC" ]] && awk /^plugin_cache_dir/{exit(0)}END{exit(1)} "$TERRAFORM_RC"'
Current workaround: use "string" quoting.
"string"
The text was updated successfully, but these errors were encountered:
@reached_if fails for more complex cases #113 : add failing tests
bbe76fa
@reached_if fails for more complex cases #113 : fix
c48f68e
xonixx
No branches or pull requests
error:
Looks like the problem is that it passes the awk script argument without the quotes:
Current workaround: use
"string"
quoting.The text was updated successfully, but these errors were encountered: