We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20999cf commit 5ce469bCopy full SHA for 5ce469b
1 file changed
commandLine/src/projects/VSCodeProject.cpp
@@ -73,6 +73,15 @@ bool VSCodeProject::createProjectFile(){
73
return false;
74
}
75
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
85
// Rename Project Workspace
86
try {
87
fs::rename(projectDir / "emptyExample.code-workspace", workspace.fileName);
0 commit comments