Skip to content

Commit

Permalink
Fix typos in build script for constants of app types (#19232)
Browse files Browse the repository at this point in the history
* Fix constant typo in lighting app (for artifact generation)

* fix two more typos in constants
  • Loading branch information
andy31415 authored Jun 6, 2022
1 parent 9c1660c commit 94c51bb
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 @@ -140,13 +140,13 @@ def OutputNames(self):
yield 'controller/python' # Directory containing WHL files
elif self == HostApp.NL_TEST_RUNNER:
yield 'chip_nl_test_runner_wheels'
elif self == HostApp.LIGHTING:
elif self == HostApp.LIGHT:
yield 'chip-lighting-app'
yield 'chip-lighting-app.map'
elif self == HostApp.TV_CASTING_APP:
elif self == HostApp.TV_CASTING:
yield 'chip-tv-casting-app'
yield 'chip-tv-casting-app.map'
elif self == HostApp.BRIDGE_APP:
elif self == HostApp.BRIDGE:
yield 'chip-bridge-app'
yield 'chip-bridge-app.map'
else:
Expand Down

0 comments on commit 94c51bb

Please sign in to comment.