Skip to content

Commit

Permalink
standalone
Browse files Browse the repository at this point in the history
  • Loading branch information
kennykerr committed Sep 5, 2024
1 parent f18f1b3 commit bd391c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/tools/standalone/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
use std::path::Path;

fn main() {
if !Path::new("crates/tests/standalone/Cargo.toml").exists() {
if !Path::new("crates/tests/misc/standalone/Cargo.toml").exists() {
println!("This tool must be run from the root of the repo.");
std::process::exit(1);
}

let src = Path::new("crates/tests/standalone/src");
let src = Path::new("crates/tests/misc/standalone/src");

write_sys(
&src.join("b_none.rs"),
Expand Down

0 comments on commit bd391c3

Please sign in to comment.