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
|
||||
for entry in WalkDir::new("assets/") {
|
||||
let entry = entry.unwrap();
|
||||
let ext = entry.path().extension();
|
||||
if ext.is_some() && ext.unwrap() == "rs" {
|
||||
println!("cargo:rerun-if-changed={}", entry.path().to_string_lossy());
|
||||
}
|
||||
println!("cargo:rerun-if-changed={}", entry.path().to_string_lossy());
|
||||
}
|
||||
|
||||
let project_dirs = ProjectDirs::from("org", "Zellij Contributors", "Zellij").unwrap();
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue