Skip to content

Commit

Permalink
[#56029] scripts: prepare_zephyr_env: Call west via python
Browse files Browse the repository at this point in the history
Signed-off-by: Maciej Torhan <mtorhan@antmicro.com>
  • Loading branch information
m-torhan committed Mar 4, 2024
1 parent 194feb7 commit 8a611dd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scripts/prepare_zephyr_env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,12 @@ cd ${PROJECT_ROOT}

# setup Zephyr project
if [ ! -d "../.west" ]; then
west init -l .
west update
west zephyr-export
python3 -m west init -l .
python3 -m west update
python3 -m west zephyr-export
else
echo "Zephyr project already downloaded"
west update
python3 -m west update
fi


Expand Down

0 comments on commit 8a611dd

Please sign in to comment.