diff --git a/crates/hyfetch/build.rs b/crates/hyfetch/build.rs index 95f93251..ac1875df 100644 --- a/crates/hyfetch/build.rs +++ b/crates/hyfetch/build.rs @@ -37,7 +37,7 @@ fn main() { for file in &["neofetch", "hyfetch"] { let src = anything_that_exist(&[ &dir.join(file), - &dir.join("/../../").join(file), + &dir.join("../../").join(file), ]).expect("couldn't find neofetch"); let dst = o.join(file); println!("cargo:rerun-if-changed={}", src.display());