Created
October 18, 2016 09:19
-
-
Save rwngwn/05be5b00533569505ecba0862283d742 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if base_image == "scratch": | |
return base_image | |
elif ':' in base_image: | |
return base_image | |
else: | |
return "%s:%s" % (base_image, version) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment