private _runCommand()

in src/manifestList.ts [280:292]


    private _runCommand(command: { (): Promise<CommandExecResult> }): void {
        command()
            .then((ret) => vscode.window.showInformationMessage(ret.stdout))
            .catch(async (error) => {
                if (error instanceof CommandNotFoundError) {
                    await this.handleCommandNotFoundError(() => {
                        this._runCommand(command);
                    });
                } else {
                    vscode.window.showErrorMessage(error.message);
                }
            });
    }