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 ef8999d commit d29af69Copy full SHA for d29af69
src/commands/getPaths.mts
@@ -651,6 +651,13 @@ export class SetupZephyrCommand extends CommandWithResult<string | undefined> {
651
}
652
window.showInformationMessage("Ninja installed.");
653
654
+ this._logger.info("Installing Picotool");
655
+ const picotoolResult = await downloadAndInstallPicotool("2.1.1");
656
+ if (!picotoolResult) {
657
+ window.showErrorMessage("Could not install Ninja. Exiting Zephyr Setup");
658
+ }
659
+ window.showInformationMessage("Picotool installed.");
660
+
661
const python3Path = await findPython();
662
if (!python3Path) {
663
this._logger.error("Failed to find Python3 executable.");
0 commit comments