aboutsummaryrefslogtreecommitdiff
path: root/src/bin
diff options
context:
space:
mode:
authorTimothy DeHerrera2021-07-15 10:44:40 -0600
committerTimothy DeHerrera2021-07-29 18:17:53 -0600
commit8a27483dce6490eae77b5064a632a91b68c2d10c (patch)
treec49e5fbcdb7f207451b0bfefa903e9b8997a88f2 /src/bin
parent3b6e84d3e274606432876b97b586d06771a3216f (diff)
optionally take args as input
Diffstat (limited to 'src/bin')
-rw-r--r--src/bin/deploy.rs2
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);