We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5429cc commit 98174f5Copy full SHA for 98174f5
IDE/Contents/Source/PolycodeToolLauncher.cpp
@@ -35,7 +35,7 @@ GenericRunner::GenericRunner(String app, String file, String inFolder) : Threade
35
void GenericRunner::runThread() {
36
#if defined(__APPLE__) && defined(__MACH__)
37
CocoaCore *cocoaCore = (CocoaCore*) CoreServices::getInstance()->getCore();
38
- cocoaCore->openFileWithApplication(file, app);
+ cocoaCore->openFileWithApplication(file.replace("\"", ""), app.replace("\"", ""));
39
#else
40
String ret = CoreServices::getInstance()->getCore()->executeExternalCommand(app, file, inFolder);
41
#endif
0 commit comments