pmb ci: fix typo in URL

Fix a typo in the URL https://postmarketos.org/pmb-ci that is being used
to detect if a script is compatible with 'pmbootstrap ci' or not.
This commit is contained in:
Oliver Smith 2022-11-20 16:38:06 +01:00
parent 0f6c6238f9
commit 147b3ce4b9
No known key found for this signature in database
GPG Key ID: 5AE7F5513E0885CB
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ def get_ci_scripts(topdir):
with open(script) as handle:
for line in handle:
if line.startswith("# https://postmarktos.org/pmb-ci"):
if line.startswith("# https://postmarketos.org/pmb-ci"):
is_pmb_ci_script = True
elif line.startswith("# Description: "):
description = line.split(": ", 1)[1].rstrip()