mirror of
https://github.com/xpipe-io/xpipe.git
synced 2026-04-26 01:17:52 -04:00
More beacon server startup fixes
This commit is contained in:
@@ -13,10 +13,10 @@ public class XPipeInstallation {
|
||||
public static String createExternalAsyncLaunchCommand(String installationBase, String arguments) {
|
||||
var suffix = (arguments != null ? arguments : "");
|
||||
if (OsType.getLocal().equals(OsType.LINUX)) {
|
||||
return "nohup \"" + installationBase + "/app/bin/xpiped\" --external & disown" + suffix;
|
||||
return "nohup \"" + installationBase + "/app/bin/xpiped\" --external " + suffix + " & disown";
|
||||
}
|
||||
|
||||
return FileNames.join(installationBase, XPipeInstallation.getDaemonExecutablePath(OsType.getLocal())) + suffix;
|
||||
return "\"" + FileNames.join(installationBase, XPipeInstallation.getDaemonExecutablePath(OsType.getLocal())) + "\" " + suffix;
|
||||
}
|
||||
|
||||
public static String createExternalLaunchCommand(String command, String arguments) {
|
||||
|
||||
Reference in New Issue
Block a user