From 10497283c5175f0d8f92a805277bc2ced2f81cd5 Mon Sep 17 00:00:00 2001 From: Jerry Johns Date: Tue, 16 Nov 2021 00:33:54 -0800 Subject: [PATCH] Fix minor Python file list issue (#11817) ChipReplStartup.py was put in the wrong folder, preventing it from getting installed correctly. --- src/controller/python/BUILD.gn | 2 +- src/controller/python/{ => chip}/ChipReplStartup.py | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/controller/python/{ => chip}/ChipReplStartup.py (100%) diff --git a/src/controller/python/BUILD.gn b/src/controller/python/BUILD.gn index bfc6ba5041c96c..34aa0b4b20e006 100644 --- a/src/controller/python/BUILD.gn +++ b/src/controller/python/BUILD.gn @@ -95,7 +95,6 @@ pw_python_action("python") { { src_dir = "." sources = [ - "ChipReplStartup.py", "chip-device-ctrl.py", "chip-repl.py", "chip/ChipBleBase.py", @@ -104,6 +103,7 @@ pw_python_action("python") { "chip/ChipCommissionableNodeCtrl.py", "chip/ChipCoreBluetoothMgr.py", "chip/ChipDeviceCtrl.py", + "chip/ChipReplStartup.py", "chip/ChipStack.py", "chip/ChipUtility.py", "chip/__init__.py", diff --git a/src/controller/python/ChipReplStartup.py b/src/controller/python/chip/ChipReplStartup.py similarity index 100% rename from src/controller/python/ChipReplStartup.py rename to src/controller/python/chip/ChipReplStartup.py