From 381ff428cda990f635e8a560054c4eb6f8570560 Mon Sep 17 00:00:00 2001 From: Andrei Litvin Date: Wed, 3 Nov 2021 15:27:55 -0400 Subject: [PATCH] Fix name of mbed shell example. (#11391) This makes the following work: ``` ./scripts/build/build_examples.py --target-glob 'mbed*' build --copy-artifacts-to out/artifacts ``` --- scripts/build/builders/mbed.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build/builders/mbed.py b/scripts/build/builders/mbed.py index 547481a2539bb2..d0198ca0c032e1 100644 --- a/scripts/build/builders/mbed.py +++ b/scripts/build/builders/mbed.py @@ -56,7 +56,7 @@ def AppNamePrefix(self): elif self == MbedApp.PIGWEED: return 'chip-mbed-pigweed-app-example' elif self == MbedApp.SHELL: - return 'shell' + return 'chip-mbed-shell-example' else: raise Exception('Unknown app type: %r' % self)