From b349156fd701da36576c2d6142da8809509e5c43 Mon Sep 17 00:00:00 2001 From: Andrei Litvin Date: Wed, 28 Sep 2022 08:11:54 -0400 Subject: [PATCH] Fix file naming for genio (#22918) --- scripts/build/builders/genio.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/build/builders/genio.py b/scripts/build/builders/genio.py index 2262cfad26f19c..ce099a2504919e 100755 --- a/scripts/build/builders/genio.py +++ b/scripts/build/builders/genio.py @@ -19,9 +19,9 @@ def ExampleName(self): def AppNamePrefix(self): if self == GenioApp.LIGHT: - return 'chip-genio-lighting-app-example' + return 'chip-mt793x-lighting-app-example' elif self == GenioApp.SHELL: - return 'chip-genio-shell-example' + return 'chip-mt793x-shell-example' else: raise Exception('Unknown app type: %r' % self)