Skip to content

Commit

Permalink
fix open folder dir msg
Browse files Browse the repository at this point in the history
  • Loading branch information
brianignacio5 committed Apr 3, 2024
1 parent 8a0db53 commit bd6a8c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/setup/cmd.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export async function useExistingEspIdfJsonSetup() {
process.platform === "win32" ? process.env.USERPROFILE : process.env.HOME;
let toolsPath = join(containerPath, ".espressif");
const actualToolsPath = await openFolder(
"Where to save ESP-IDF Tools? (IDF_TOOLS_PATH)"
"Choose ESP-IDF Tools (.espressif directory)"
);
if (actualToolsPath) {
toolsPath = actualToolsPath;
Expand All @@ -62,7 +62,7 @@ export async function useExistingEspIdfJsonSetup() {
const idfSetups = await loadIdfSetupsFromEspIdfJson(toolsPath);
if (!idfSetups) {
OutputChannel.appendLineAndShow("No IDF Setups found");
return;
return;
}
let quickPickItems = idfSetups.map((idfSetup) => {
return {
Expand Down

0 comments on commit bd6a8c7

Please sign in to comment.