check-MAINTAINERS.py: use sys.argv[1]
authorMartin Liska <mliska@suse.cz>
Tue, 11 Jan 2022 13:29:25 +0000 (14:29 +0100)
committerMartin Liska <mliska@suse.cz>
Tue, 11 Jan 2022 13:29:54 +0000 (14:29 +0100)
contrib/ChangeLog:

* check-MAINTAINERS.py: Use sys.argv[1] as path to MAINTAINERS.

contrib/check-MAINTAINERS.py

index ca7bb29..08fc8e4 100755 (executable)
@@ -82,7 +82,7 @@ def check_group(name, lines):
         print(f'{name} are fine!')
 
 
-lines = open('MAINTAINERS').read().splitlines()
+lines = open(sys.argv[1]).read().splitlines()
 
 needle = 'Global Reviewers'
 lines = list(dropwhile(lambda x: x.strip() != needle, lines))