private async runUndeploy()

in src/manifestList.ts [308:320]


    private async runUndeploy(
        manifest: WskDeployManifest,
        auth: AuthMetadata | null,
        deployment?: string,
        projectName?: string
    ): Promise<void> {
        await showConfirmationModal(
            `Are you sure you want to undeploy?\n(${manifest.label})`,
            auth
        ).then(() => {
            this._runCommand(() => this.undeploy(manifest, auth, deployment, projectName));
        });
    }