From 07721d4a5ebcc81749e548f175c14c8dc804efcf Mon Sep 17 00:00:00 2001 From: Johan Lorenzo Date: Tue, 8 Oct 2019 23:01:27 +0200 Subject: [PATCH] Bug 1586039 - Fix quoted version names (#5811) It was fixed in [1], but I regressed it when I resolved conflicts in [2] [1] https://github.com/mozilla-mobile/fenix/commit/9729fd494e524cea5f1ec979c7ae8d40dae4e596\#diff-3a2aaafc93fc8bb53e2029001aa236aeL98 [2] https://github.com/mozilla-mobile/fenix/commit/060e915d2bcb913e1e837289b24ff4895455b1cf\#diff-3a2aaafc93fc8bb53e2029001aa236aeR95 --- taskcluster/fenix_taskgraph/transforms/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/taskcluster/fenix_taskgraph/transforms/build.py b/taskcluster/fenix_taskgraph/transforms/build.py index eacf73bbe..8dbacb11f 100644 --- a/taskcluster/fenix_taskgraph/transforms/build.py +++ b/taskcluster/fenix_taskgraph/transforms/build.py @@ -92,7 +92,7 @@ def add_release_version(config, tasks): for task in tasks: if task.pop("include-release-version", False): task["run"]["gradlew"].append( - '-PversionName="{}"'.format(config.params["release_version"]) + '-PversionName={}'.format(config.params["release_version"]) ) yield task