Fix broken skip-push on docker-build-publish

Lost part of the keyword it seems.

Change-Id: I2c0db8f303cd54f2382fa709c72e1fe2bb7d164a
This commit is contained in:
Simon Gomizelj 2016-06-08 18:35:01 -04:00
parent 7e94d575cc
commit 6e4b760655
1 changed files with 1 additions and 1 deletions

View File

@ -3235,7 +3235,7 @@ def docker_build_publish(parse, xml_parent, data):
XML.SubElement(db, 'skipTagLatest').text = str(
data.get('skip-tag-latest', False)).lower()
XML.SubElement(db, 'skipPush').text = str(
data.get('skip-', False)).lower()
data.get('skip-push', False)).lower()
XML.SubElement(db, 'dockerfilePath').text = str(
data.get('file-path', ''))