summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/release-build5
1 files changed, 2 insertions, 3 deletions
diff --git a/scripts/release-build b/scripts/release-build
index 36ecb423..a3e25ebb 100755
--- a/scripts/release-build
+++ b/scripts/release-build
@@ -121,9 +121,8 @@ class ReleaseApp(cliapp.Application):
builds = []
for system_name in systems:
system, _ = self.load_morphology(system_name)
- if system['arch'] not in self.controllers:
- continue
- builds.append(Build(system_name, system['arch'], self))
+ if system['arch'] in self.controllers:
+ builds.append(Build(system_name, system['arch'], self))
return builds
def deploy_images(self, cluster, cluster_path):