We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef77c01 commit dc8ed95Copy full SHA for dc8ed95
1 file changed
src/service/setupService.ts
@@ -33,6 +33,9 @@ export class SetupService {
33
needsResponse: boolean = false
34
) => {
35
const originalPythonExecutablePath = await this.getCurrentPythonExecutablePath();
36
+ if (originalPythonExecutablePath === "") {
37
+ return;
38
+ }
39
let pythonExecutablePath = originalPythonExecutablePath;
40
const pythonExecutableName: string =
41
os.platform() === "win32"
0 commit comments