Skip to content

Commit

Permalink
Make the app name known for dynamic bridge (#23022)
Browse files Browse the repository at this point in the history
* Make the app name known for dynamic bridge (so that artifacts can be computed)

* Use yield, not return
  • Loading branch information
andy31415 authored and pull[bot] committed Jun 16, 2023
1 parent e1185e3 commit 1208627
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions scripts/build/builders/host.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,9 @@ def OutputNames(self):
elif self == HostApp.BRIDGE:
yield 'chip-bridge-app'
yield 'chip-bridge-app.map'
elif self == HostApp.DYNAMIC_BRIDGE:
yield 'dynamic-chip-bridge-app'
yield 'dynamic-chip-bridge-app.map'
else:
raise Exception('Unknown app type: %r' % self)

Expand Down

0 comments on commit 1208627

Please sign in to comment.