File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 1
1
# What's New?
2
2
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
4
10
5
11
Features:
6
12
Original file line number Diff line number Diff line change @@ -1546,7 +1546,7 @@ export class CMakeProject {
1546
1546
compdbPaths . push ( compdbPath ) ;
1547
1547
if ( this . workspaceContext . config . copyCompileCommands ) {
1548
1548
// 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 ;
1550
1550
const expandedDest = util . platformNormalizePath ( await expandString ( copyDest , opts ) ) ;
1551
1551
if ( compdbPath !== expandedDest ) {
1552
1552
const parentDir = path . dirname ( expandedDest ) ;
You can’t perform that action at this time.
0 commit comments