Skip to content

Commit

Permalink
Fix application name for build package generation
Browse files Browse the repository at this point in the history
  • Loading branch information
andy31415 committed Mar 15, 2022
1 parent 4da5c1c commit 7ebb4b8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scripts/build/builders/host.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,11 +102,11 @@ def OutputNames(self):
yield 'chip-cert'
yield 'chip-cert.map'
elif self == HostApp.OTA_PROVIDER:
yield 'ota-requestor-app'
yield 'ota-requestor-app.map'
yield 'chip-ota-requestor-app'
yield 'chip-ota-requestor-app.map'
elif self == HostApp.OTA_REQUESTOR:
yield 'ota-provider-app'
yield 'ota-provider-app.map'
yield 'chip-ota-provider-app'
yield 'chip-ota-provider-app.map'
else:
raise Exception('Unknown app type: %r' % self)

Expand Down

0 comments on commit 7ebb4b8

Please sign in to comment.