Fix handling of Shippable env vars.

pull/24748/head
Matt Clay 8 years ago
parent 58c1a9dd94
commit 1582e9bf7d

@ -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…
Cancel
Save