blob: 5b6379aa07bec8868cd384cf8e768a792369612a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
# SOURCE ME
deactivate || true
export IDF_TOOLS_PATH="$PWD/idf-tools"
pushd esp-idf
./install.sh
. ./export.sh
idf_tools.py install-python-env
popd
|