diff options
| author | Fuwn <[email protected]> | 2021-05-16 16:24:17 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-05-16 16:24:17 +0000 |
| commit | aa5c97d75077a79d6f9f0e46c84697e754e7b9b7 (patch) | |
| tree | 1b2131eb45cfa54f7dec79c23c1fbd7a5a8b098b /src/main.rs | |
| parent | refactor(subs): remove two second delay before prompt initiailization (diff) | |
| download | whirl-aa5c97d75077a79d6f9f0e46c84697e754e7b9b7.tar.xz whirl-aa5c97d75077a79d6f9f0e46c84697e754e7b9b7.zip | |
feat(cli): `clean` subcommand
The `clean` subcommand deletes files and directories which are not necessary for Whirl to function.
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 97ecf4a..8182fff 100644 --- a/src/main.rs +++ b/src/main.rs @@ -19,7 +19,7 @@ async fn main() -> Result<(), Box<dyn Error>> { .start()?; // Execution - Cli::execute(matches).await; + Cli::execute(matches).await.unwrap(); Ok(()) } |