Skip to content

Commit

Permalink
Fix inability to create projects with spaces in the name
Browse files Browse the repository at this point in the history
  • Loading branch information
Ravbug committed Sep 27, 2024
1 parent ce5b752 commit f298810
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 f298810

Please sign in to comment.