diff options
author | Andreas Kling <kling@serenityos.org> | 2021-08-30 20:48:55 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-08-30 20:49:37 +0200 |
commit | 57ac8ff1fd1be9ae4c2c4e6f9fbf94b1d662d959 (patch) | |
tree | a20e439375cbd68596c9c90d4f243b12b3744d93 | |
parent | a2f0eeff7afc9280cea56c926f45d5224b5ac452 (diff) | |
download | serenity-57ac8ff1fd1be9ae4c2c4e6f9fbf94b1d662d959.zip |
Meta: Update lint-ports.py for the SerenityPorts move
-rwxr-xr-x | Meta/lint-ports.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Meta/lint-ports.py b/Meta/lint-ports.py index aa61e5e0a9..3f8c40ab24 100755 --- a/Meta/lint-ports.py +++ b/Meta/lint-ports.py @@ -123,7 +123,7 @@ def check_package_files(ports): all_good = False for prop in PORT_PROPERTIES: - if prop == 'auth_type' and re.match('^https://github.com/SerenityOS/', props["files"]): + if prop == 'auth_type' and re.match('^https://github.com/SerenityPorts/', props["files"]): continue if props[prop] == '': print(f"Ports/{port} is missing required property '{prop}'") |