feat: add same multiple option
This commit is contained in:
parent
f2e3f37201
commit
2019eca6df
1 changed files with 8 additions and 3 deletions
|
@ -14,9 +14,14 @@ class GitlabRunner:
|
|||
if v is False:
|
||||
opts.append('--%s=false' % k)
|
||||
else:
|
||||
opts.append('--%s' % k)
|
||||
if v is not True:
|
||||
opts.append(str(v))
|
||||
if isinstance(v, list):
|
||||
for av in v:
|
||||
opts.append('--%s' % k)
|
||||
opts.append(str(av))
|
||||
else:
|
||||
opts.append('--%s' % k)
|
||||
if v is not True:
|
||||
opts.append(str(v))
|
||||
|
||||
subprocess.check_call(['gitlab-runner', 'register',
|
||||
'--non-interactive',
|
||||
|
|
Loading…
Reference in a new issue