From 94c51bb34903f7310ad0901cb122a4f61ff1c1af Mon Sep 17 00:00:00 2001 From: Andrei Litvin Date: Mon, 6 Jun 2022 10:12:52 -0400 Subject: [PATCH] Fix typos in build script for constants of app types (#19232) * Fix constant typo in lighting app (for artifact generation) * fix two more typos in constants --- scripts/build/builders/host.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/build/builders/host.py b/scripts/build/builders/host.py index 77903cd64ca7e8..19e20724625e8a 100644 --- a/scripts/build/builders/host.py +++ b/scripts/build/builders/host.py @@ -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: