Skip to content

Commit

Permalink
Fix: error output for promote
Browse files Browse the repository at this point in the history
  • Loading branch information
korvyashka committed May 8, 2024
1 parent 54bec02 commit c3ac37b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -934,7 +934,7 @@ pub fn handle_cli_edge_app_command(command: &EdgeAppCommands) {
{
Ok(_installation_id) => _installation_id,
Err(e) => {
error!("Error calling promote: {}", e);
error!("Promote failed: {}", e);
std::process::exit(1);
}
};
Expand All @@ -943,7 +943,7 @@ pub fn handle_cli_edge_app_command(command: &EdgeAppCommands) {
match edge_app_command.get_app_id_by_installation(&actual_installation_id) {
Ok(id) => id,
Err(e) => {
error!("Error calling promote: {}", e);
error!("Promote failed: {}", e);
std::process::exit(1);
}
};
Expand Down

0 comments on commit c3ac37b

Please sign in to comment.