Show an Install Skipped message when Python already exists at the specified install location. (#5141)

* Also fixed a bug where future installs would get blocked after doing an install that gets skipped.
This commit is contained in:
Cory Rivera
2019-04-22 14:28:59 -07:00
committed by GitHub
parent 161135cd90
commit 1b24dff738
2 changed files with 7 additions and 0 deletions

View File

@@ -44,6 +44,10 @@ export class ApiWrapper {
return vscode.window.showErrorMessage(message, ...items);
}
public showInfoMessage(message: string, ...items: string[]): Thenable<string | undefined> {
return vscode.window.showInformationMessage(message, ...items);
}
public showOpenDialog(options: vscode.OpenDialogOptions): Thenable<vscode.Uri[] | undefined> {
return vscode.window.showOpenDialog(options);
}