Skip to content

Commit 0d9737a

Browse files
committed
Fix project root assert
Signed-off-by: hi-rustin <[email protected]>
1 parent 2926ca0 commit 0d9737a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/sourcegen/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,6 @@ fn normalize_newlines(s: &str) -> String {
196196
pub fn project_root() -> PathBuf {
197197
let dir = env!("CARGO_MANIFEST_DIR");
198198
let res = PathBuf::from(dir).parent().unwrap().parent().unwrap().to_owned();
199-
assert!(res.join("bors.toml").exists());
199+
assert!(res.join("triagebot.toml").exists());
200200
res
201201
}

0 commit comments

Comments
 (0)