Added -C shortcut for --backend-config

This commit is contained in:
Thomas Patzke
2019-05-21 00:15:01 +02:00
parent 7e163d71eb
commit 97541ac267
+1 -1
View File
@@ -111,7 +111,7 @@ argparser.add_argument("--lists", "-l", action="store_true", help="List availabl
argparser.add_argument("--config", "-c", action="append", help="Configurations with field name and index mapping for target environment. Multiple configurations are merged into one. Last config is authorative in case of conflicts.")
argparser.add_argument("--output", "-o", default=None, help="Output file or filename prefix if multiple files are generated")
argparser.add_argument("--backend-option", "-O", action="append", help="Options and switches that are passed to the backend")
argparser.add_argument("--backend-config", help="Configuration file containing options to pass to the backend")
argparser.add_argument("--backend-config", "-C", help="Configuration file containing options to pass to the backend")
argparser.add_argument("--defer-abort", "-d", action="store_true", help="Don't abort on parse or conversion errors, proceed with next rule. The exit code from the last error is returned")
argparser.add_argument("--ignore-backend-errors", "-I", action="store_true", help="Only return error codes for parse errors and ignore errors for rules that cause backend errors. Useful, when you want to get as much queries as possible.")
argparser.add_argument("--shoot-yourself-in-the-foot", action="store_true", help=argparse.SUPPRESS)