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 4083229 commit c658323Copy full SHA for c658323
src/installer/stages/platformio-core.js
@@ -98,7 +98,12 @@ export default class PlatformIOCoreStage extends BaseStage {
98
if (this.useDevCore()) {
99
scriptArgs.push('--dev');
100
}
101
- console.info(await callInstallerScript(await this.whereIsPython(), scriptArgs));
+ console.info(
102
+ await callInstallerScript(
103
+ await this.whereIsPython({ prompt: true }),
104
+ scriptArgs
105
+ )
106
+ );
107
108
// check that PIO Core is installed and load its state an patch OS environ
109
withProgress('Loading PlatformIO Core state', 40);
0 commit comments