Skip to content

Commit

Permalink
Make --ignore-options not required
Browse files Browse the repository at this point in the history
  • Loading branch information
joereynolds committed Jun 19, 2022
1 parent 6f8ed54 commit 4662a66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ import databaseFactory from "./database/databaseFactory";
.option("--password <string>", "The password for the database connection")
.option("--port <string>", "The port for the database connection")
.option("--config <string>", "The path to the configuration file")
.requiredOption("--ignore-errors <string...>", "The errors to ignore (comma separated)")
.option("--ignore-errors <string...>", "The errors to ignore (comma separated)")
.parse(process.argv);

let queries: Query[] = [];
Expand Down

0 comments on commit 4662a66

Please sign in to comment.