Skip to content

Commit

Permalink
build_python_device.sh: use chip-core instead of chip-library (#22494)
Browse files Browse the repository at this point in the history
Co-authored-by: Jerry Johns <johnsj@google.com>
  • Loading branch information
sandeepmistry and mrjerryjohns authored Sep 14, 2022
1 parent 6ebd6b6 commit 2ed6dcb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/build_python_device.sh
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ gn --root="$CHIP_ROOT" gen "$OUTPUT_ROOT" --args="chip_detail_logging=$chip_deta
if [ "$enable_pybindings" == true ]; then
ninja -v -C "$OUTPUT_ROOT" pycontroller
else
ninja -v -C "$OUTPUT_ROOT" chip-library
ninja -v -C "$OUTPUT_ROOT" chip-core
fi

# Create a virtual environment that has access to the built python tools
Expand All @@ -115,7 +115,7 @@ virtualenv --clear "$ENVIRONMENT_ROOT"
if [ "$enable_pybindings" == true ]; then
WHEEL=("$OUTPUT_ROOT"/pybindings/pycontroller/pychip-*.whl)
else
WHEEL=("$OUTPUT_ROOT"/controller/python/chip_library*.whl)
WHEEL=("$OUTPUT_ROOT"/controller/python/chip_core*.whl)
fi

source "$ENVIRONMENT_ROOT"/bin/activate
Expand Down

0 comments on commit 2ed6dcb

Please sign in to comment.