Skip to content

Commit

Permalink
fix(cli): fix regression at startup (#1162)
Browse files Browse the repository at this point in the history
Fix regression at startup
  • Loading branch information
Alexandcoats authored Mar 3, 2023
1 parent 13263be commit aaa7986
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/bin/inx-chronicle/cli/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,10 @@ impl ClArgs {
}
_ => (),
}
Ok(PostCommand::Exit)
} else {
Ok(PostCommand::Start)
}
Ok(PostCommand::Exit)
}
}

Expand Down

0 comments on commit aaa7986

Please sign in to comment.