mirror of
https://github.com/xpipe-io/xpipe.git
synced 2026-08-25 18:56:39 +00:00
Improve loading spinner handling
This commit is contained in:
@@ -55,7 +55,7 @@ public class XPipeInstallation {
|
||||
public static String createExternalAsyncLaunchCommand(
|
||||
String installationBase, XPipeDaemonMode mode, String arguments) {
|
||||
var suffix = (arguments != null ? " " + arguments : "");
|
||||
var modeOption = mode != null ? " --mode " + mode.getDisplayName() : null;
|
||||
var modeOption = mode != null ? " --mode " + mode.getDisplayName() : "";
|
||||
if (OsType.getLocal().equals(OsType.LINUX)) {
|
||||
return "nohup \"" + installationBase + "/app/bin/xpiped\"" + modeOption + suffix
|
||||
+ " & disown";
|
||||
|
||||
Reference in New Issue
Block a user