Skip to content

Commit 92b1dee

Browse files
committed
Fix missing comma in cli-help
1 parent e2eaa0a commit 92b1dee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/server/src/cli.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ commander.version(process.env.VERSION || "development")
2828
.option("-e, --extensions-dir <dir>", "Override the main default path for user extensions.")
2929
.option("--extra-extensions-dir [dir]", "Path to an extra user extension directory (repeatable).", collect, [])
3030
.option("--extra-builtin-extensions-dir [dir]", "Path to an extra built-in extension directory (repeatable).", collect, [])
31-
.option("-d --user-data-dir <dir>", "Specifies the directory that user data is kept in, useful when running as root.")
31+
.option("-d, --user-data-dir <dir>", "Specifies the directory that user data is kept in, useful when running as root.")
3232
.option("--data-dir <value>", "DEPRECATED: Use '--user-data-dir' instead. Customize where user-data is stored.")
3333
.option("-h, --host <value>", "Customize the hostname.", "0.0.0.0")
3434
.option("-o, --open", "Open in the browser on startup.", false)

0 commit comments

Comments
 (0)