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
|
||||
"""
|
||||
if is_shippable():
|
||||
return 'shippable-%d-%d' % (
|
||||
return 'shippable-%s-%s' % (
|
||||
os.environ['SHIPPABLE_BUILD_NUMBER'],
|
||||
os.environ['SHIPPABLE_JOB_NUMBER'],
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue