Compare commits

...

1 Commits

Author SHA1 Message Date
6beae6629f gestion des paths 2021-11-13 07:15:51 +01:00

View File

@@ -88,7 +88,11 @@ impl GitWebQ {
fn add_path(&self, name : &&String) -> GitWebQ { fn add_path(&self, name : &&String) -> GitWebQ {
match &self.path { match &self.path {
None => {self.clone_with_path(Some(name.to_string()))} None => {self.clone_with_path(Some(name.to_string()))}
Some(path) => {self.clone_with_path()} Some(path) => {if path.ends_with("/") {
self.clone_with_path(Some(path.clone() + name))
} else {
self.clone_with_path(Some(path.clone() + "/" + name))
}}
} }
} }
} }