We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 026b38f commit b855d07Copy full SHA for b855d07
src/extension.ts
@@ -75,6 +75,7 @@ import {
75
updateCoverageAndRebuildEnv,
76
forceLowerCaseDriveLetter,
77
decodeVar,
78
+ normalizePath,
79
} from "./utilities";
80
81
import {
@@ -2600,7 +2601,7 @@ async function populateRequirementsGateway(enviroPath: string) {
2600
2601
2602
let existingEnvs: string[] = [];
2603
function updateRequirementsAvailability(enviroPath: string) {
- const nodeID = makeEnviroNodeID(enviroPath);
2604
+ const nodeID = makeEnviroNodeID(normalizePath(enviroPath));
2605
2606
// the vcast: prefix to allow package.json nodes to control
2607
// when the VectorCAST context menu should be shown
0 commit comments