Work around rustup fallback error on Windows

This commit is contained in:
Michael Wright 2019-07-05 07:49:19 +02:00 committed by flip1995
parent 3977843ab5
commit c0c2a8d9c1
No known key found for this signature in database
GPG Key ID: 01C836B640FFDFB1
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ fn fmt() {
let dev_dir = root_dir.join("clippy_dev");
let output = std::process::Command::new("cargo")
.current_dir(dev_dir)
.args(&["run", "--", "fmt", "--check"])
.args(&["+nightly", "run", "--", "fmt", "--check"])
.output()
.unwrap();