Skip to content

Commit

Permalink
test-push
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanbstorey committed Mar 27, 2024
1 parent 853f97f commit 3d23b8b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -154,10 +154,10 @@ pub fn build_app(in_angreal_project: bool) -> App<'static> {
// Build the initial App with angreal sub commands
let mut app = base_app_setup();

if !in_angreal_project {
app = add_init_subcommand(app);
if in_angreal_project {
app = add_project_subcommands(app);
} else {
app = add_project_subcommands(app)
app = add_init_subcommand(app);
}
app
}
Expand Down

0 comments on commit 3d23b8b

Please sign in to comment.