Browse Source

Try to fix CI for Rust 1.58 (#3689)

PATH lookup for WIndows command execution was tweaked slightly to not
search the cwd, so let's see if this fixes things...
pull/3688/head
Alex Crichton 3 years ago
committed by GitHub
parent
commit
46ade3dab3
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      crates/misc/run-examples/src/main.rs

2
crates/misc/run-examples/src/main.rs

@ -89,7 +89,7 @@ fn main() -> anyhow::Result<()> {
.arg("ole32.lib")
.arg("bcrypt.lib");
if is_dir {
"main.exe".to_string()
"./main.exe".to_string()
} else {
format!("./{}.exe", example)
}

Loading…
Cancel
Save