We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0d2a69 commit 1255c60Copy full SHA for 1255c60
tools/kolla-images.py
@@ -229,6 +229,8 @@ def get_openstack_release() -> str:
229
key, value = line.split("=")
230
if key.strip() == "defaultbranch":
231
value = value.strip()
232
+ if value == "master":
233
+ return value
234
for prefix in ("stable/", "unmaintained/"):
235
if value.startswith(prefix):
236
return value[len(prefix):]
0 commit comments