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 c121b60 commit 53debe9Copy full SHA for 53debe9
packages/databricks-vscode/src/extension.ts
@@ -131,9 +131,9 @@ export async function activate(
131
// Add the databricks binary to the PATH environment variable in terminals
132
context.environmentVariableCollection.clear();
133
context.environmentVariableCollection.persistent = false;
134
- context.environmentVariableCollection.prepend(
+ context.environmentVariableCollection.append(
135
"PATH",
136
- `${context.asAbsolutePath("./bin")}${path.delimiter}`
+ `${path.delimiter}${context.asAbsolutePath("./bin")}`
137
);
138
139
const packageMetadata = await PackageJsonUtils.getMetadata(context);
0 commit comments