mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix handling of Shippable env vars.
This commit is contained in:
parent
58c1a9dd94
commit
1582e9bf7d
1 changed files with 1 additions and 1 deletions
|
@ -319,7 +319,7 @@ class CloudProvider(CloudBase):
|
||||||
:rtype: str
|
:rtype: str
|
||||||
"""
|
"""
|
||||||
if is_shippable():
|
if is_shippable():
|
||||||
return 'shippable-%d-%d' % (
|
return 'shippable-%s-%s' % (
|
||||||
os.environ['SHIPPABLE_BUILD_NUMBER'],
|
os.environ['SHIPPABLE_BUILD_NUMBER'],
|
||||||
os.environ['SHIPPABLE_JOB_NUMBER'],
|
os.environ['SHIPPABLE_JOB_NUMBER'],
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue