Skip to content

Commit 94170de

Browse files
committed
Fix dev command args
1 parent bf05dac commit 94170de

File tree

1 file changed

+2
-2
lines changed
  • packages/cli-v3/src/commands

1 file changed

+2
-2
lines changed

packages/cli-v3/src/commands/dev.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export function configureDevCommand(program: Command) {
2727
program
2828
.command("dev")
2929
.description("Run your Trigger.dev tasks locally")
30-
.option("-c, --config <config file>", "The name of the config file, found at [path].")
30+
.option("-c, --config <config file>", "The name of the config file")
3131
.option(
3232
"-p, --project-ref <project ref>",
3333
"The project ref. Required if there is no config file."
@@ -38,7 +38,7 @@ export function configureDevCommand(program: Command) {
3838
)
3939
.option("--debug-otel", "Enable OpenTelemetry debugging")
4040
.option("--skip-update-check", "Skip checking for @trigger.dev package updates")
41-
).action(async (_, options) => {
41+
).action(async (options) => {
4242
wrapCommandAction("dev", DevCommandOptions, options, async (opts) => {
4343
await devCommand(opts);
4444
});

0 commit comments

Comments
 (0)