From 6edd25d879a12ededb5151715dc20b4d24c0c254 Mon Sep 17 00:00:00 2001 From: Jonathan Wilkes <jon.w.wilkes@gmail.com> Date: Mon, 22 Feb 2016 00:15:04 -0500 Subject: [PATCH] change path to accommodate OSX app bundle (needs to be tested with OSX system install) --- pd/nw/pdgui.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pd/nw/pdgui.js b/pd/nw/pdgui.js index 6d4a393eb..51e7045cb 100644 --- a/pd/nw/pdgui.js +++ b/pd/nw/pdgui.js @@ -1062,8 +1062,9 @@ function spawn_pd(gui_path, port) { platform = process.platform, flags = ["-guiport", port]; if (platform === "darwin") { - // OSX - pd_binary = path.join(gui_path, "pd-l2ork"); + // OSX -- this is currently tailored to work with an app bundle. It + // hasn't been tested with a system install of pd-l2ork + pd_binary = path.join("bin", "pd-l2ork"); } else { pd_binary = path.join(gui_path, "..", "bin", "pd-l2ork"); flags.push("-nrt"); // for some reason realtime causes watchdog to die -- GitLab