Merge "Fix options.update is not 'all' if no config"

This commit is contained in:
Zuul 2018-09-21 01:33:26 +00:00 committed by Gerrit Code Review
commit 23af427cf7
1 changed files with 3 additions and 2 deletions

View File

@ -94,8 +94,9 @@ class JenkinsJobs(object):
# Note: CLI options override config file options.
if getattr(self.options, 'update', None) is None:
self.options.update = str(self.jjb_config.builder.get('update',
'all'))
self.options.update = self.jjb_config.builder.get('update')
if self.options.update is None:
self.options.update = 'all'
if getattr(self.options, 'plugins_info_path', None) is not None:
with io.open(self.options.plugins_info_path, 'r',