Skip to content

Commit

Permalink
feat(cli/deploy): Colorize error message
Browse files Browse the repository at this point in the history
  • Loading branch information
xdoardo authored and theduke committed Jun 20, 2024
1 parent 1e45d8d commit a68cddf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/cli/src/commands/app/deploy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -678,7 +678,7 @@ pub async fn wait_app(
eprintln!();
}
if !(res.status().is_success() || res.status().is_redirection()) {
eprintln!("The app version was deployed correctly, but fails with a non-success status code of {}", res.status())
eprintln!("{}",format!("The app version was deployed correctly, but fails with a non-success status code of {}", res.status()).yellow());
} else {
eprintln!("{} Deployment complete", "𖥔".yellow().bold());
}
Expand Down

0 comments on commit a68cddf

Please sign in to comment.