Skip to content

Commit 5ce469b

Browse files
authored
remove template.config from project (#423)
1 parent 20999cf commit 5ce469b

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

commandLine/src/projects/VSCodeProject.cpp

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,15 @@ bool VSCodeProject::createProjectFile(){
7373
return false;
7474
}
7575

76+
77+
auto templateConfig { projectDir / "template.config" };
78+
try {
79+
fs::remove( templateConfig );
80+
} catch(fs::filesystem_error& e) {
81+
ofLogError(LOG_NAME) << "error removing file " << " : " << templateConfig << " : " << e.what();
82+
}
83+
84+
7685
// Rename Project Workspace
7786
try {
7887
fs::rename(projectDir / "emptyExample.code-workspace", workspace.fileName);

0 commit comments

Comments
 (0)