actually fixed

This commit is contained in:
Zacharias-Brohn
2026-02-19 10:51:52 +01:00
parent 3d39e7a16d
commit c4d51f82c3
+1 -1
View File
@@ -13,7 +13,7 @@ def kill():
@app.command()
def start(no_daemon: bool = False):
subprocess.run(args + ([] if no_daemon else ["-d"]), check=True)
subprocess.run(args + ["-n"] + ([] if no_daemon else ["-d"]), check=True)
@app.command()