gestion des paths
This commit is contained in:
parent
ba19d67f66
commit
6beae6629f
|
@ -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))
|
||||||
|
}}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue