private getWskdeployPath()

in src/manifestList.ts [494:501]


    private getWskdeployPath(): string {
        let wskdeploy = 'wskdeploy';
        const wskdeployPath = this.storageManager.getWskdeployPath();
        if (wskdeployPath) {
            wskdeploy = vscode.Uri.file(wskdeployPath.path).fsPath;
        }
        return wskdeploy;
    }