mirror of
https://github.com/zellij-org/zellij.git
synced 2025-01-06 09:19:45 +03:00
Fix a silly bug in the build!
This commit is contained in:
parent
190d41445b
commit
0092de271b
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…
Reference in New Issue
Block a user