Browse code

Merge "Don't add deb-* packaging repos to plugin list"

Jenkins authored on 2016/09/14 09:39:21
Showing 1 changed files
... ...
@@ -46,6 +46,9 @@ def is_in_openstack_namespace(proj):
46 46
 
47 47
 # Check if this project has a plugin file
48 48
 def has_devstack_plugin(proj):
49
+    # Don't link in the deb packaging repos
50
+    if "openstack/deb-" in proj:
51
+        return False
49 52
     r = requests.get("https://git.openstack.org/cgit/%s/plain/devstack/plugin.sh" % proj)
50 53
     return r.status_code == 200
51 54