Fix a silly bug in the build!

This commit is contained in:
Brooks J Rady 2021-02-16 20:30:16 +00:00
parent 190d41445b
commit 0092de271b

View file

@ -26,11 +26,8 @@ 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());
}
}
let project_dirs = ProjectDirs::from("org", "Zellij Contributors", "Zellij").unwrap();
let data_dir = project_dirs.data_dir();