mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-16 09:55:26 -07: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…
Add table
Add a link
Reference in a new issue