Skip to content

Commit

Permalink
Fix error creating projects
Browse files Browse the repository at this point in the history
  • Loading branch information
Ravbug committed Sep 27, 2024
1 parent f298810 commit 61160ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/create_dialog_derived.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ void CreateProjectDialogD::OnCreate(wxCommandEvent& event){
#elif defined _WIN32
auto fullProj = filesystem::path(projPath) / projName;
auto fullTemplate = executableTemplatesPath / fmt::format("{}.{}",templatePrefix,templateName);
string command = fmt::format("\"{}\" -createproject \"{}\" - cloneFromTemplate \"{}\"",
string command = fmt::format("\"{}\" -createproject \"{}\" -cloneFromTemplate \"{}\"",
executablePath.string(),
fullProj.string(),
fullTemplate.string());
Expand Down

0 comments on commit 61160ca

Please sign in to comment.