From 11b773573e196d9928809c7331c172ff3c36dfd9 Mon Sep 17 00:00:00 2001 From: Willi Ballenthin Date: Tue, 5 Apr 2022 17:17:44 -0600 Subject: [PATCH] lint: fix rules path --- scripts/lint.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/lint.py b/scripts/lint.py index 0df29155..6c337cff 100644 --- a/scripts/lint.py +++ b/scripts/lint.py @@ -962,7 +962,7 @@ def main(argv=None): parser = argparse.ArgumentParser(description="Lint capa rules.") capa.main.install_common_args(parser, wanted={"tag"}) - parser.add_argument("rules", type=str, help="Path to rules") + parser.add_argument("rules", type=str, action="append", help="Path to rules") parser.add_argument("--samples", type=str, default=samples_path, help="Path to samples") parser.add_argument( "--thorough",