in src/manifestList.ts [322:334]
private async runSync(
manifest: WskDeployManifest,
auth: AuthMetadata | null,
deployment?: string,
projectName?: string
): Promise<void> {
await showConfirmationModal(
`Are you sure you want to sync?\n(${manifest.label})`,
auth
).then(() => {
this._runCommand(() => this.sync(manifest, auth, deployment, projectName));
});
}