1
0
Fork 0

Fixes regression where nightly wouldn't build due to missing quotes

master
Mitchell Hentges 2019-06-30 23:16:56 -07:00 committed by Sebastian Kaspari
parent b82340bf1f
commit a4300fc3aa
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ class TaskBuilder(object):
capitalized_channel = upper_case_first_letter(channel)
gradle_commands = (
'./gradlew --no-daemon -PversionName={} clean test assemble{}'.format(
'./gradlew --no-daemon -PversionName="{}" clean test assemble{}'.format(
version_name, capitalized_channel),
)