Skip to content

Commit

Permalink
chore: Update fast_setup function to use correct flag for first_setup…
Browse files Browse the repository at this point in the history
… parameter
  • Loading branch information
Carbrex committed Jun 14, 2024
1 parent e1f5f00 commit 638eba6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion command/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ fn setup(mut config: Config, first_setup: bool, fast: bool) -> std::io::Result<(
}

fn fast_setup(config: Config) -> std::io::Result<()> {
setup(config, false, true)
setup(config, true, true)
}

fn create_placeholder_dirs() {
Expand Down

0 comments on commit 638eba6

Please sign in to comment.