Skip to content

Commit 0631624

Browse files
author
Joachim Meyer
committed
Spaces split Project names should be working crossplatform now..
1 parent f03942d commit 0631624

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

IDE/Contents/Source/PolycodeToolLauncher.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,15 +51,15 @@ void PolycodeRunner::runThread() {
5151
#if defined(__APPLE__) && defined(__MACH__)
5252
String command = "../MacOS/PolycodePlayer";
5353
String inFolder = polycodeBasePath+"/Standalone/Player/PolycodePlayer.app/Contents/Resources";
54-
String args = polyappPath;
54+
String args = "\""+polyappPath+"\""+;
5555
#elif defined _WINDOWS
5656
String command = "\""+polycodeBasePath+"/Standalone/Player/PolycodePlayer.exe\"";
5757
String args = "\""+polyappPath+"\"";
5858
String inFolder = polycodeBasePath+"/Standalone/Player";
5959
#else
6060
String command = "./PolycodePlayer";
6161
String inFolder = polycodeBasePath+"/Standalone/Player";
62-
String args = polyappPath;
62+
String args = "\""+polyappPath+"\"";
6363
#endif
6464

6565
String ret = CoreServices::getInstance()->getCore()->executeExternalCommand(command, args, inFolder);

0 commit comments

Comments
 (0)