Skip to content

Commit

Permalink
fix(cli): fixed genkit start port option to accept the port value (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelgj committed Nov 29, 2024
1 parent 3dfa6da commit db6d9c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion genkit-tools/cli/src/commands/start.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ interface RunOptions {
export const start = new Command('start')
.description('runs a command in Genkit dev mode')
.option('-n, --noui', 'do not start the Dev UI', false)
.option('-p, --port', 'port for the Dev UI')
.option('-p, --port <port>', 'port for the Dev UI')
.option('-o, --open', 'Open the browser on UI start up')
.action(async (options: RunOptions) => {
let runtimePromise = Promise.resolve();
Expand Down

0 comments on commit db6d9c9

Please sign in to comment.