From 147b3ce4b9c3b84e7b32b274311236ed5d5fbfae Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Sun, 20 Nov 2022 16:38:06 +0100 Subject: [PATCH] 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. --- pmb/ci/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pmb/ci/__init__.py b/pmb/ci/__init__.py index 879bf661..82433c9c 100644 --- a/pmb/ci/__init__.py +++ b/pmb/ci/__init__.py @@ -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()