File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
511Features:
612
Original file line number Diff line number Diff 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 ) ;
You can’t perform that action at this time.
0 commit comments