From 0317cf03d6e91e88898d6bccfe1afb4c73eca113 Mon Sep 17 00:00:00 2001 From: Johan Lorenzo Date: Tue, 8 Oct 2019 23:01:27 +0200 Subject: [PATCH] [fenix] Bug 1586039 - Fix quoted version names (https://github.com/mozilla-mobile/fenix/pull/5811) It was fixed in [1], but I regressed it when I resolved conflicts in [2] [1] https://github.com/mozilla-mobile/fenix/commit/f9863564eee6364dd1e58481758ee888109e8560\#diff-3a2aaafc93fc8bb53e2029001aa236aeL98 [2] https://github.com/mozilla-mobile/fenix/commit/2b941e690b515d2a02cd2cbf509394adf5c94f2e\#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 eacf73bbe5..8dbacb11f2 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