Skip to content

Commit

Permalink
Fix doubling of cpack args passed by package preset (#3766)
Browse files Browse the repository at this point in the history
  • Loading branch information
andreeis authored May 20, 2024
1 parent 0d32b20 commit 02a91b0
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions src/cpack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,13 +89,6 @@ export class CPackDriver implements vscode.Disposable {
}
}

const opts = driver.expansionOptions;
const args = [];
for (const value of this.ws.config.cpackArgs) {
args.push(await expandString(value, opts));
}

cpackArgs = cpackArgs.concat(args);
return cpackArgs;
}

Expand Down

0 comments on commit 02a91b0

Please sign in to comment.