Skip to content

Commit

Permalink
refactor: update PR template
Browse files Browse the repository at this point in the history
  • Loading branch information
kaimen-sano committed Apr 6, 2024
1 parent f572c2e commit 36d6189
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@
- [ ] I updated/added relevant documentation.
- [ ] The code is formatted properly `cargo fmt --all --`.
- [ ] Clippy doesn't report any issues `cargo clippy -- -D warnings`.
- [ ] I have regenerated the schemas if needed `cargo schema`.
- [ ] I have regenerated the schemas if needed with `just schemas`.
2 changes: 1 addition & 1 deletion xtask/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ pub mod tasks {
let cargo = env::var("CARGO").unwrap_or_else(|_| "cargo".to_string());
let metadata = Command::new(cargo)
.current_dir(project_root())
.args(&["metadata", "--no-deps", "--format-version", "1"])
.args(["metadata", "--no-deps", "--format-version", "1"])
.output()
.expect("Failed to fetch workspace metadata");

Expand Down

0 comments on commit 36d6189

Please sign in to comment.