aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-05-16 16:24:17 +0000
committerFuwn <[email protected]>2021-05-16 16:24:17 +0000
commitaa5c97d75077a79d6f9f0e46c84697e754e7b9b7 (patch)
tree1b2131eb45cfa54f7dec79c23c1fbd7a5a8b098b /src/main.rs
parentrefactor(subs): remove two second delay before prompt initiailization (diff)
downloadwhirl-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.rs2
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(())
}