Fix options.update is not 'all' if no config
If the user does not have 'update' in their configuration ensure we are properly defaulting to 'all' and not None. Change-Id: I65ddc49066119db0947801203ac88cb69153d1b0 Signed-off-by: Thanh Ha <zxiiro@linux.com>
This commit is contained in:
parent
9399b1f986
commit
18a321d510
@ -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',
|
||||
|
Loading…
Reference in New Issue
Block a user