diff options
| author | Fuwn <[email protected]> | 2021-05-16 16:24:51 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-05-16 16:24:51 +0000 |
| commit | 1bd20cbb58715e0a5719fb73c320f965827d5f05 (patch) | |
| tree | f74feedd22299b5bc75243f8cd48566b88f02dd8 /src | |
| parent | feat(cli): `clean` subcommand (diff) | |
| download | whirl-1bd20cbb58715e0a5719fb73c320f965827d5f05.tar.xz whirl-1bd20cbb58715e0a5719fb73c320f965827d5f05.zip | |
fix(cli/clean): formatting
Diffstat (limited to 'src')
| -rw-r--r-- | src/cli.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -44,7 +44,7 @@ impl Cli { } debug!("generated shell completions"); } else if matches.is_present("clean") { - let cleanable_directories = vec!["./log"]; + let cleanable_directories = vec!["./log/"]; for dir in cleanable_directories { println!("cleaning directory '{}'", dir); if let Err(e) = std::fs::remove_dir_all(dir) { |