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