Skip to content

Commit

Permalink
fix(actions): fix downloading repo w/o arx config
Browse files Browse the repository at this point in the history
Previously arx tried to delete arx config after finishing scaffolding, even if
the repository didn't contain arx config.
  • Loading branch information
norskeld committed Mar 12, 2024
1 parent 5a9d356 commit a680bf9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/actions/executor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ impl Executor {
match &self.config.actions {
| Actions::Suite(suites) => self.suite(suites).await?,
| Actions::Flat(actions) => self.flat(actions).await?,
| Actions::Empty => println!("No actions found."),
| Actions::Empty => return Ok(()),
};

// Delete the config file if needed.
Expand Down

0 comments on commit a680bf9

Please sign in to comment.