Skip to content

Commit

Permalink
fix: ✏️ fixed displayed number of steps in cli serving (4 -> 5)
Browse files Browse the repository at this point in the history
  • Loading branch information
arctic-hen7 committed Sep 7, 2021
1 parent ef0cf76 commit d1a6bb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/perseus-cli/src/serve.rs
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ pub fn serve(dir: PathBuf, prog_args: &[String]) -> Result<i32> {
// Only build if the user hasn't set `--no-build`, handling non-zero exit codes
if !prog_args.contains(&"--no-build".to_string()) {
did_build = true;
let build_exit_code = build_internal(dir.clone(), 4)?;
let build_exit_code = build_internal(dir.clone(), 5)?;
if build_exit_code != 0 {
return Ok(build_exit_code);
}
Expand Down

0 comments on commit d1a6bb8

Please sign in to comment.