Skip to content

Commit

Permalink
Merge branch 'alex/test-up-parachain' of https://github.com/r0gue-io/…
Browse files Browse the repository at this point in the history
…pop-cli into alex/test-up-parachain
  • Loading branch information
AlexD10S committed Apr 5, 2024
2 parents a15823b + 06951d1 commit 1a16acb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/commands/up/parachain.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,10 @@ impl ZombienetCommand {
"The following missing binaries are required: {}",
missing.iter().map(|b| b.name.as_str()).collect::<Vec<_>>().join(", ")
))?;
if !confirm("Would you like to source them automatically now?").interact()? {
if !confirm("Would you like to source them automatically now?")
.initial_value(true)
.interact()?
{
outro_cancel("Cannot deploy parachain to local network until all required binaries are available.")?;
return Ok(());
}
Expand Down

0 comments on commit 1a16acb

Please sign in to comment.