Skip to content

Commit

Permalink
feature: add ability to provide user tip message from GCP
Browse files Browse the repository at this point in the history
  • Loading branch information
ShayElkana committed Sep 27, 2023
1 parent f5e467c commit 648749d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/push-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ export const handleDeploymentTask = async (
progressLogger: (message: keyof typeof DeploymentStatusTypesSchema, tip?: string) => {
const deltaInSeconds = (Date.now() - now) / TimeInMs.second;
task.title = `Deployment in progress: ${message}`;
const customTip = tip ? `\n ${chalk.bold(chalk.green('Tip:'))} ${chalk.italic(chalk.green(tip))}` : '';
const customTip = tip ? `\n ${chalk.italic(chalk.green(tip))}` : '';
task.output = createProgressBarString(MAX_PROGRESS_VALUE, STATUS_TO_PROGRESS_VALUE[message], deltaInSeconds) + customTip;

Check failure on line 207 in src/services/push-service.ts

View workflow job for this annotation

GitHub Actions / Run validations

Insert `⏎·······`
},
});
Expand Down

0 comments on commit 648749d

Please sign in to comment.