diff --git a/src/cli/cron-cli.ts b/src/cli/cron-cli.ts index 1b4d0c7bb..606417ea9 100644 --- a/src/cli/cron-cli.ts +++ b/src/cli/cron-cli.ts @@ -293,7 +293,11 @@ export function registerCronCli(program: Command) { .requiredOption("--name ", "Job name") .option("--description ", "Optional description") .option("--disabled", "Create job disabled", false) - .option("--delete-after-run", "Delete one-shot job after it succeeds", false) + .option( + "--delete-after-run", + "Delete one-shot job after it succeeds", + false, + ) .option("--agent ", "Agent id for this job") .option("--session ", "Session target (main|isolated)", "main") .option( @@ -579,7 +583,11 @@ export function registerCronCli(program: Command) { .option("--description ", "Set description") .option("--enable", "Enable job", false) .option("--disable", "Disable job", false) - .option("--delete-after-run", "Delete one-shot job after it succeeds", false) + .option( + "--delete-after-run", + "Delete one-shot job after it succeeds", + false, + ) .option("--keep-after-run", "Keep one-shot job after it succeeds", false) .option("--session ", "Session target (main|isolated)") .option("--agent ", "Set agent id")