You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: rpmlint/cli.py
+2-6Lines changed: 2 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -75,7 +75,7 @@ def process_lint_args(argv):
75
75
parser.add_argument('-V', '--version', action='version', version=__version__, help='show package version and exit')
76
76
parser.add_argument('-c', '--config', type=_validate_conf_location, help='load up additional configuration data from specified path (file or directory with *.toml files)')
77
77
parser.add_argument('-e', '--explain', nargs='+', default='', help='provide detailed explanation for one specific message id')
78
-
parser.add_argument('-r', '--rpmlintrc', '--file', type=_is_file_path, help='load up specified rpmlintrc file')
78
+
parser.add_argument('-r', '--rpmlintrc', '--file', action='append', type=_is_file_path, help='load up specified rpmlintrc file (may be repeated)')
79
79
parser.add_argument('-v', '--verbose', '--info', action='store_true', help='provide detailed explanations where available')
80
80
parser.add_argument('-p', '--print-config', action='store_true', help='print the settings that are in effect when using the rpmlint')
81
81
parser.add_argument('-i', '--installed', nargs='+', default='', help='installed packages to be validated by rpmlint')
0 commit comments