1
0
Fork 0

Bug 1586039 - Fix quoted version names (#5811)

It was fixed in [1], but I regressed it when I resolved conflicts in [2]

[1] 9729fd494e\#diff-3a2aaafc93fc8bb53e2029001aa236aeL98
[2] 060e915d2b\#diff-3a2aaafc93fc8bb53e2029001aa236aeR95
master
Johan Lorenzo 2019-10-08 23:01:27 +02:00 committed by Sawyer Blatz
parent d586afea2e
commit 07721d4a5e
1 changed files with 1 additions and 1 deletions

View File

@ -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