Skip to content

Commit bd8fceb

Browse files
committed
Fixes toolchain filtering
1 parent 26e3c61 commit bd8fceb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

workspace_tools/build_release.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@
177177
if options.toolchains:
178178
print "Only building using the following toolchains: %s" % (options.toolchains)
179179
toolchainSet = set(toolchains)
180-
toolchains = toolchainSet and set((options.toolchains).split(','))
180+
toolchains = toolchainSet.intersection(set((options.toolchains).split(',')))
181181

182182
for toolchain in toolchains:
183183
id = "%s::%s" % (target_name, toolchain)

0 commit comments

Comments
 (0)