Skip to content

Commit

Permalink
Fix: error text edge app -> Edge App
Browse files Browse the repository at this point in the history
  • Loading branch information
korvyashka committed Feb 29, 2024
1 parent 1e693f7 commit f1b3223
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 @@ -974,12 +974,12 @@ pub fn handle_cli_edge_app_command(command: &EdgeAppCommands) {
Ok(rev) => match rev {
Some(rev) => rev.revision,
None => {
println!("Failed to get latest edge app revision.");
println!("Failed to get latest Edge App revision.");
std::process::exit(1);
}
},
Err(e) => {
println!("Failed to get latest edge app revision: {}", e);
println!("Failed to get latest Edge App revision: {}", e);
std::process::exit(1);
}
}
Expand Down

0 comments on commit f1b3223

Please sign in to comment.