Cli tool #9

Merged
Zacharias-Brohn merged 33 commits from cli-tool into main 2026-02-22 21:43:51 +01:00
Showing only changes of commit c4d51f82c3 - Show all commits
+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()