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
In the CI script we have
if [ -n "$RUSTFMTCHECK" ]; then rustup component add rustfmt cargo fmt --all -- --check fi
and in the pipeline we set RUSTFMTCHECK = false
RUSTFMTCHECK = false
Setting the env var to false makes the if statement true so the formatter is run, likely this is not whats intended.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the CI script we have
and in the pipeline we set
RUSTFMTCHECK = false
Setting the env var to false makes the if statement true so the formatter is run, likely this is not whats intended.
The text was updated successfully, but these errors were encountered: