diff --git a/frontend/packages/cli/src/cli/index.ts b/frontend/packages/cli/src/cli/index.ts index 829ff7b67..762aa14f9 100644 --- a/frontend/packages/cli/src/cli/index.ts +++ b/frontend/packages/cli/src/cli/index.ts @@ -18,8 +18,8 @@ program.addCommand(erdCommand) erdCommand .command('build') .description('Build ERD html assets') - .option('--input ', 'Path to the .sql file') - .option('--format ', 'Format of the input file') + .option('--input ', 'Path or URL to the schema file') + .option('--format ', 'Format of the input file (postgres|schemarb)') .action((options) => buildCommand(options.input, distDir, options.format)) export { program }