esp-idf/install.fish
blakjak44 f5f0648608 tools: install.fish: Modify method to get base directory.
Current method assumes that you are in the esp-idf directory when executing install. This method will get the correct path regardless of where you execute from.

Merges https://github.com/espressif/esp-idf/pull/6718
2021-04-11 21:35:54 +02:00

20 lines
463 B
Fish
Executable File

#!/usr/bin/env fish
set basedir (realpath (dirname (status -f)))
set -x IDF_PATH $basedir
echo "Detecting the Python interpreter"
source "$IDF_PATH"/tools/detect_python.fish
echo "Installing ESP-IDF tools"
"$ESP_PYTHON" "$IDF_PATH"/tools/idf_tools.py install
echo "Installing Python environment and packages"
"$ESP_PYTHON" "$IDF_PATH"/tools/idf_tools.py install-python-env
echo "All done! You can now run:"
echo ""
echo " . "$basedir"/export.fish"
echo ""