Fix prettier formatting
CI caught this on the v1.1.0 tag push - format:check wasn't run locally before committing.
This commit is contained in:
@@ -113,7 +113,7 @@ the script — always as a discrete argv element or env var, never interpolated
|
|||||||
| `triggershell service install [--system]` | Install a systemd unit that runs `triggershell start` (per-user by default, Linux only) |
|
| `triggershell service install [--system]` | Install a systemd unit that runs `triggershell start` (per-user by default, Linux only) |
|
||||||
| `triggershell service uninstall [--system]` | Stop, disable, and remove the systemd unit |
|
| `triggershell service uninstall [--system]` | Stop, disable, and remove the systemd unit |
|
||||||
| `triggershell service status [--system]` | Show the systemd unit's status |
|
| `triggershell service status [--system]` | Show the systemd unit's status |
|
||||||
| `triggershell service logs [-n LINES] [--no-follow] [--system]` | Tail the systemd unit's logs (wraps `journalctl -o cat`, so each line is raw JSON - pipe through `jq` for pretty-printing) |
|
| `triggershell service logs [-n LINES] [--no-follow] [--system]` | Tail the systemd unit's logs (wraps `journalctl -o cat`, so each line is raw JSON - pipe through `jq` for pretty-printing) |
|
||||||
|
|
||||||
### Running scripts from the CLI
|
### Running scripts from the CLI
|
||||||
|
|
||||||
|
|||||||
+2
-4
@@ -184,10 +184,8 @@ service
|
|||||||
service
|
service
|
||||||
.command("logs")
|
.command("logs")
|
||||||
.description("Tail the systemd unit's logs (journalctl).")
|
.description("Tail the systemd unit's logs (journalctl).")
|
||||||
.option(
|
.option("-n, --lines <n>", "Number of recent log lines to show.", (v) =>
|
||||||
"-n, --lines <n>",
|
Number(v),
|
||||||
"Number of recent log lines to show.",
|
|
||||||
(v) => Number(v),
|
|
||||||
)
|
)
|
||||||
.option(
|
.option(
|
||||||
"--no-follow",
|
"--no-follow",
|
||||||
|
|||||||
Reference in New Issue
Block a user