Skip to content

Commit

Permalink
Fix deploy command info messages
Browse files Browse the repository at this point in the history
Signed-off-by: Robert Detjens <[email protected]>
  • Loading branch information
detjensrobert committed Feb 8, 2025
1 parent 44785f0 commit 368d466
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/commands/deploy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,14 @@ pub async fn run(profile_name: &str, no_build: &bool, _dry_run: &bool) {
}

// B)
info!("deploying challenges...");
info!("uploading assets...");
if let Err(e) = deploy::s3::upload_assets(profile_name, &build_results).await {
error!("{e:?}");
exit(1);
}

// A)
info!("deploying challenges...");
info!("updating frontend...");
if let Err(e) = deploy::frontend::update_frontend(profile_name, &build_results).await {
error!("{e:?}");
exit(1);
Expand Down

0 comments on commit 368d466

Please sign in to comment.