Merge pull request #567 from matthiasbeyer/bin/imag-seperator-remove
Remove dash from command listing
This commit is contained in:
commit
67d536fa74
1 changed files with 1 additions and 1 deletions
|
@ -80,7 +80,7 @@ fn get_commands() -> Vec<String> {
|
||||||
.filter_map(|path| {
|
.filter_map(|path| {
|
||||||
path.file_name()
|
path.file_name()
|
||||||
.to_str()
|
.to_str()
|
||||||
.map(String::from)
|
.and_then(|s| s.splitn(2, "-").nth(1).map(|s| format!("imag {}", s)))
|
||||||
})
|
})
|
||||||
.collect()
|
.collect()
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue