Skip to content

Commit

Permalink
fixed run button
Browse files Browse the repository at this point in the history
  • Loading branch information
bafto committed Dec 12, 2023
1 parent 0daabf6 commit 82f8abf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export function activate(ctx: vscode.ExtensionContext) {
return;
}

let DDPPATH = "";
let DDPPATH = process.env.DDPPATH === undefined ? "" : process.env.DDPPATH;
if (config.has("DDPPATH")) {
let ddppath = config.get<string>("DDPPATH");
if (ddppath !== "" && ddppath !== undefined) {
Expand Down

0 comments on commit 82f8abf

Please sign in to comment.