Bug 1443104 - fix update folder in bouncer submission release job. r=jlorenzo,Callek draft
authorMihai Tabara <mtabara@mozilla.com>
Mon, 05 Mar 2018 14:10:21 +0000
changeset 763151 77ce2411bf5313f2abc50a216f2d3fbcec90df10
parent 763150 13a58c13967f9e10e36aac6f72f2f02429e959ee
push id101355
push userbmo:mtabara@mozilla.com
push dateMon, 05 Mar 2018 14:11:14 +0000
reviewersjlorenzo, Callek
bugs1443104
milestone60.0
Bug 1443104 - fix update folder in bouncer submission release job. r=jlorenzo,Callek MozReview-Commit-ID: E1vqqaG1PE9
taskcluster/taskgraph/transforms/bouncer_submission.py
--- a/taskcluster/taskgraph/transforms/bouncer_submission.py
+++ b/taskcluster/taskgraph/transforms/bouncer_submission.py
@@ -176,17 +176,17 @@ def craft_paths_per_bouncer_platform(pro
             version=current_version, previous_version=strip_build_data(previous_version)
         )
 
         path_template = CONFIG_PER_BOUNCER_PRODUCT[bouncer_product]['path_template']
         file_relative_location = path_template.format(
             product=product.lower(),
             version=current_version,
             build_number=current_build_number,
-            update_folder='updates/' if '-mar' in bouncer_product else '',
+            update_folder='update/' if '-mar' in bouncer_product else '',
             ftp_platform=ftp_platform,
             file=file_name,
         )
 
         paths_per_bouncer_platform[bouncer_platform] = file_relative_location
 
     return paths_per_bouncer_platform