Skip to content

Commit

Permalink
Change messaging
Browse files Browse the repository at this point in the history
  • Loading branch information
rebeccahum committed Dec 11, 2023
1 parent ead035d commit 420a23d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/bin/vip-deploy-app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,8 @@ export async function deployAppCmd( arg: string[] = [], opts: Record< string, un
const env = opts.env as AppEnvironment;

const [ fileName ] = arg;
let fileMeta = await getFileMeta( fileName );
const fileMeta = await getFileMeta( fileName );
const basename = fileMeta.basename as string;

debug( 'Options: ', opts );
debug( 'Args: ', arg );
Expand Down Expand Up @@ -248,7 +249,7 @@ Processing the file for deployment to your environment...

progressTracker.stepSuccess( 'deploy' );
progressTracker.stopPrinting();
console.log( `\nSuccessfully deployed ${ fileName } to ${ domain }. All set!` );
console.log( `\n${ chalk.bold( chalk.green( basename ) ) } has been sent for deployment to ${ chalk.bold( chalk.yellow( domain ) ) }. Please check ${ chalk.bold( 'VIP Dashboard' ) } (under 'Code > Deployments') for deployment status.` );
}

// Command examples for the `vip deploy app` help prompt
Expand Down

0 comments on commit 420a23d

Please sign in to comment.