Skip to content

Commit

Permalink
fix workspace arg
Browse files Browse the repository at this point in the history
  • Loading branch information
brianignacio5 committed Feb 8, 2025
1 parent c1166e7 commit 7a7b353
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/eim/migrationTool.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import { getIdfMd5sum } from "./checkCurrentSettings";

export async function useCustomExtraVarsAsIdfSetup(
customExtraVars: { [key: string]: string },
workspaceFolder
workspaceFolder: Uri
) {
if (
!customExtraVars["IDF_PATH"] &&
Expand Down Expand Up @@ -58,7 +58,7 @@ export async function useCustomExtraVarsAsIdfSetup(
"idf.customExtraVars",
customExtraVars,
ConfigurationTarget.WorkspaceFolder,
workspaceFolder.uri
workspaceFolder
);
}
if (
Expand Down

0 comments on commit 7a7b353

Please sign in to comment.