Skip to content

Commit d2e825e

Browse files
add changelog, put next patch section of changelog, will update version before release (#4298)
1 parent fad04c8 commit d2e825e

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# What's New?
22

3-
## 1.20
3+
## 1.20.x
4+
5+
Bug Fixes:
6+
7+
- Fix regression where we weren't properly expanding copyCompileCommands path. [#4294](https://github.com/microsoft/vscode-cmake-tools/issues/4294)
8+
9+
## 1.20.52
410

511
Features:
612

src/cmakeProject.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1546,7 +1546,7 @@ export class CMakeProject {
15461546
compdbPaths.push(compdbPath);
15471547
if (this.workspaceContext.config.copyCompileCommands) {
15481548
// Now try to copy the compdb to the user-requested path
1549-
const copyDest = util.lightNormalizePath(this.workspaceContext.config.copyCompileCommands);
1549+
const copyDest = this.workspaceContext.config.copyCompileCommands;
15501550
const expandedDest = util.platformNormalizePath(await expandString(copyDest, opts));
15511551
if (compdbPath !== expandedDest) {
15521552
const parentDir = path.dirname(expandedDest);

0 commit comments

Comments
 (0)