mirror of
https://github.com/xpipe-io/xpipe.git
synced 2026-08-24 10:16:40 +00:00
Fix daemon external start up command on mac
This commit is contained in:
@@ -16,7 +16,7 @@ public class XPipeInstallation {
|
||||
if (OsType.getLocal().equals(OsType.LINUX)) {
|
||||
return "nohup \"" + installationBase + "/app/bin/xpiped\" --external" + suffix + " & disown";
|
||||
} else if (OsType.getLocal().equals(OsType.MAC)) {
|
||||
return "nohup \"" + installationBase + "/Contents/MacOS/xpiped\" --external" + suffix + " & disown";
|
||||
return "open \"" + installationBase + "\" --args --external" + suffix;
|
||||
}
|
||||
|
||||
return "\"" + FileNames.join(installationBase, XPipeInstallation.getDaemonExecutablePath(OsType.getLocal())) + "\" --external" + suffix;
|
||||
|
||||
Reference in New Issue
Block a user