Skip to content

Commit

Permalink
${buildKit} is not updated after a Kit switch (#2335)
Browse files Browse the repository at this point in the history
* ${buildKit} is not updated after a Kit switch

* Update changelog

Co-authored-by: Andreea Isac <[email protected]>
  • Loading branch information
bobbrow and andreeis authored Feb 1, 2022
1 parent 736ba04 commit dd1f2ca
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# What's New?

## 1.10.0
Bug Fixes:
- ${buildKit} is not updated after a Kit switch. [#2335](https://github.com/microsoft/vscode-cmake-tools/issues/2335)

## 1.9.2
Bug fixes:
- Fix infinite recursion into symlinks. [#2257](https://github.com/microsoft/vscode-cmake-tools/issues/2257)
Expand Down
1 change: 1 addition & 0 deletions src/drivers/driver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -515,6 +515,7 @@ export abstract class CMakeDriver implements vscode.Disposable {
const needs_clean = this.binaryDir === newBinaryDir && kitChangeNeedsClean(kit, this._kit);
await this.doSetKit(needs_clean, async () => {
await this._setKit(kit, preferredGenerators);
await this._refreshExpansions();
});
}

Expand Down

0 comments on commit dd1f2ca

Please sign in to comment.