Skip to content

Commit 53c35ce

Browse files
committed
Fix deploy command info messages
Signed-off-by: Robert Detjens <[email protected]>
1 parent 0e3d743 commit 53c35ce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/commands/deploy.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,14 @@ pub async fn run(profile_name: &str, no_build: &bool, _dry_run: &bool) {
4848
}
4949

5050
// B)
51-
info!("deploying challenges...");
51+
info!("uploading assets...");
5252
if let Err(e) = deploy::s3::upload_assets(profile_name, &build_results).await {
5353
error!("{e:?}");
5454
exit(1);
5555
}
5656

5757
// A)
58-
info!("deploying challenges...");
58+
info!("updating frontend...");
5959
if let Err(e) = deploy::frontend::update_frontend(profile_name, &build_results).await {
6060
error!("{e:?}");
6161
exit(1);

0 commit comments

Comments
 (0)