Skip to content

Commit 5d684a3

Browse files
authored
Update VSCodeProject.cpp fix .vscode not being copied
1 parent 536b1b3 commit 5d684a3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

commandLine/src/projects/VSCodeProject.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ bool VSCodeProject::createProjectFile(){
7777
//fs::copy(templatePath, projectDir, fs::copy_options::overwrite_existing | fs::copy_options::recursive);
7878

7979
//tmp fix for now - explicit copy of files needed
80-
fs::copy(templatePath / ".vscode", projectDir, fs::copy_options::overwrite_existing | fs::copy_options::recursive);
80+
fs::copy(templatePath / ".vscode", projectDir / ".vscode", fs::copy_options::overwrite_existing | fs::copy_options::recursive);
8181
fs::copy(templatePath / "Makefile", projectDir, fs::copy_options::skip_existing | fs::copy_options::recursive);
8282
fs::copy(templatePath / "config.make", projectDir, fs::copy_options::skip_existing | fs::copy_options::recursive);
8383
fs::copy(templatePath / "emptyExample.code-workspace", projectDir, fs::copy_options::overwrite_existing | fs::copy_options::recursive);

0 commit comments

Comments
 (0)