tools: {install,export}.{bat,sh} tools

This commit is contained in:
Ivan Grokhotkov
2019-04-29 10:37:02 +08:00
parent 3d866694c9
commit 12b6da0388
6 changed files with 191 additions and 2 deletions

18
install.sh Executable file
View File

@@ -0,0 +1,18 @@
#!/usr/bin/env bash
set -e
set -u
export IDF_PATH=$(cd $(dirname $0); pwd)
echo "Installing ESP-IDF tools"
${IDF_PATH}/tools/idf_tools.py install
echo "Installing Python environment and packages"
${IDF_PATH}/tools/idf_tools.py install-python-env
basedir="$(dirname $0)"
echo "All done! You can now run:"
echo ""
echo " . ${basedir}/export.sh"
echo ""