Skip to content

Commit

Permalink
Fixed swapped app names for ota requestor/provider in build_examples (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
andy31415 authored and pull[bot] committed Mar 24, 2022
1 parent 37f4468 commit 47d823d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 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 'chip-ota-requestor-app'
yield 'chip-ota-requestor-app.map'
elif self == HostApp.OTA_REQUESTOR:
yield 'chip-ota-provider-app'
yield 'chip-ota-provider-app.map'
elif self == HostApp.OTA_REQUESTOR:
yield 'chip-ota-requestor-app'
yield 'chip-ota-requestor-app.map'
else:
raise Exception('Unknown app type: %r' % self)

Expand Down

0 comments on commit 47d823d

Please sign in to comment.