Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(cli): add 'future' to post-'amplify pull' success message for cl… #7647

Merged
Show file tree
Hide file tree
Changes from 1 commit
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 packages/amplify-cli/src/attach-backend.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,14 +70,14 @@ async function onSuccess(context: $TSContext) {

context.print.info('');
context.print.success(`Successfully pulled backend environment ${envName} from the cloud.`);
context.print.info(`Run 'amplify pull' to sync upstream changes.`);
context.print.info(`Run 'amplify pull' to sync future upstream changes.`);
context.print.info('');
} else {
removeFolderStructure();

context.print.info('');
context.print.success(`Added backend environment config object to your project.`);
context.print.info(`Run 'amplify pull' to sync upstream changes.`);
context.print.info(`Run 'amplify pull' to sync future upstream changes.`);
context.print.info('');
}
} else {
Expand Down
2 changes: 1 addition & 1 deletion packages/amplify-e2e-core/src/init/amplifyPull.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export function amplifyPull(
}

if (settings.emptyDir) {
chain.wait(/Successfully pulled backend environment .+ from the cloud\./).wait("Run 'amplify pull' to sync upstream changes.");
chain.wait(/Successfully pulled backend environment .+ from the cloud\./).wait("Run 'amplify pull' to sync future upstream changes.");
} else {
chain.wait('Post-pull status').wait('Current Environment').wait(tableHeaderRegex).wait(tableSeperator);
}
Expand Down