From 4662a669908cfa66efbe419191b44cd06e76e5ad Mon Sep 17 00:00:00 2001 From: Joe Reynolds Date: Sun, 19 Jun 2022 10:57:36 +0100 Subject: [PATCH] Make --ignore-options not required --- src/cli.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli.ts b/src/cli.ts index 395d8188..13503908 100644 --- a/src/cli.ts +++ b/src/cli.ts @@ -39,7 +39,7 @@ import databaseFactory from "./database/databaseFactory"; .option("--password ", "The password for the database connection") .option("--port ", "The port for the database connection") .option("--config ", "The path to the configuration file") - .requiredOption("--ignore-errors ", "The errors to ignore (comma separated)") + .option("--ignore-errors ", "The errors to ignore (comma separated)") .parse(process.argv); let queries: Query[] = [];