Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cli/src/commands/deploy/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export default class DeployAll extends CloudInstanceCommand {
const indentation = '\t'.repeat(Math.max(0, indentationLevel));
const spinner = ora({
discardStdin: false,
prefixText: `\n${indentation}Initial provision: deploying without sync config to validate sync rules before final deploy...\n`,
prefixText: `\n${indentation}Initial provision: deploying without sync config changes in order to validate sync config before final deploy...\n`,
spinner: 'moon',
suffixText: `\n${indentation}This may take a few minutes.\n`
});
Expand Down Expand Up @@ -208,7 +208,7 @@ export default class DeployAll extends CloudInstanceCommand {
* We will attempt to deploy the config without the sync config first,
* if that succeeds, then we will validate the sync config and deploy again with the sync config.
*/
if (requiresReprovision && syncConfigHasChanges) {
if (requiresReprovision) {
this.log(
[
`The instance is ${ux.colorize('yellow', 'not currently provisioned')} and we have detected changes to the sync config.`,
Expand Down