minor changes to workflows to prevent preemptive exits/failures
Lint & Format (JS/TS) / lint-format (pull_request) Successful in 12s
Lint & Format (Python) / lint-format (pull_request) Successful in 21s
Lint & Format (Rust) / lint-format (pull_request) Successful in 1m34s

This commit is contained in:
2026-05-20 00:02:14 +02:00
parent 902863e5ba
commit ca3a288eab
9 changed files with 133 additions and 142 deletions
+2 -4
View File
@@ -8,11 +8,9 @@ app = typer.Typer()
@app.command()
def start():
subprocess.run(args + ["ipc"] + ["call"] +
["picker"] + ["open"], check=True)
subprocess.run(args + ["ipc"] + ["call"] + ["picker"] + ["open"], check=True)
@app.command()
def start_freeze():
subprocess.run(args + ["ipc"] + ["call"] +
["picker"] + ["openFreeze"], check=True)
subprocess.run(args + ["ipc"] + ["call"] + ["picker"] + ["openFreeze"], check=True)