From a8b3781a4b1cf6e8f163fdf8f17f0c57082cf48e Mon Sep 17 00:00:00 2001 From: Johan Lorenzo Date: Tue, 2 Apr 2019 15:11:25 +0200 Subject: [PATCH] Fix missing indexes on master --- automation/taskcluster/lib/tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automation/taskcluster/lib/tasks.py b/automation/taskcluster/lib/tasks.py index 34f90ea9d..2ef5919a0 100644 --- a/automation/taskcluster/lib/tasks.py +++ b/automation/taskcluster/lib/tasks.py @@ -130,7 +130,7 @@ class TaskBuilder(object): def _craft_branch_routes(self, variant): routes = [] - if self.repo_url == _OFFICIAL_REPO_URL and self.branch == 'master': + if self.repo_url == _OFFICIAL_REPO_URL and self.branch == 'refs/heads/master': architecture, build_type, product = \ _get_architecture_and_build_type_and_product_from_variant(variant) product = convert_camel_case_into_kebab_case(product)