Skip to content

Commit

Permalink
fix: wrong order
Browse files Browse the repository at this point in the history
  • Loading branch information
null8626 committed Feb 3, 2024
1 parent ddf7aa6 commit 559bc0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ impl<'a> BuildContext<'a> {
}

if self.app.server.path.join("config").exists()
&& self.skip_stages.iter().any(|s| s.as_str() == "bootstrap")
&& self.skip_stages.iter().all(|s| s.as_str() != "bootstrap")
{
self.bootstrap_files().await?;
}
Expand Down

0 comments on commit 559bc0b

Please sign in to comment.