From 97541ac267def535ad0ec243bdbcd65032e281cf Mon Sep 17 00:00:00 2001 From: Thomas Patzke Date: Tue, 21 May 2019 00:15:01 +0200 Subject: [PATCH] Added -C shortcut for --backend-config --- tools/sigmac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/sigmac b/tools/sigmac index c5cfb9b4a..1a9afcd23 100755 --- a/tools/sigmac +++ b/tools/sigmac @@ -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)