diff options
author | Timothy DeHerrera | 2021-07-15 10:44:40 -0600 |
---|---|---|
committer | Timothy DeHerrera | 2021-07-29 18:17:53 -0600 |
commit | 8a27483dce6490eae77b5064a632a91b68c2d10c (patch) | |
tree | c49e5fbcdb7f207451b0bfefa903e9b8997a88f2 /src/bin/deploy.rs | |
parent | 3b6e84d3e274606432876b97b586d06771a3216f (diff) |
optionally take args as input
Diffstat (limited to 'src/bin/deploy.rs')
-rw-r--r-- | src/bin/deploy.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/deploy.rs b/src/bin/deploy.rs index 6686258..e924dc9 100644 --- a/src/bin/deploy.rs +++ b/src/bin/deploy.rs @@ -8,7 +8,7 @@ use log::error; #[tokio::main] async fn main() -> Result<(), Box<dyn std::error::Error>> { - match cli::run().await { + match cli::run(None).await { Ok(()) => (), Err(err) => { error!("{}", err); |