Fix a silly bug in the build!
This commit is contained in:
parent
190d41445b
commit
0092de271b
1 changed files with 1 additions and 4 deletions
5
build.rs
5
build.rs
|
|
@ -26,10 +26,7 @@ fn main() {
|
||||||
// Clear Default Plugins and Layouts
|
// Clear Default Plugins and Layouts
|
||||||
for entry in WalkDir::new("assets/") {
|
for entry in WalkDir::new("assets/") {
|
||||||
let entry = entry.unwrap();
|
let entry = entry.unwrap();
|
||||||
let ext = entry.path().extension();
|
println!("cargo:rerun-if-changed={}", entry.path().to_string_lossy());
|
||||||
if ext.is_some() && ext.unwrap() == "rs" {
|
|
||||||
println!("cargo:rerun-if-changed={}", entry.path().to_string_lossy());
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
let project_dirs = ProjectDirs::from("org", "Zellij Contributors", "Zellij").unwrap();
|
let project_dirs = ProjectDirs::from("org", "Zellij Contributors", "Zellij").unwrap();
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue