-
Notifications
You must be signed in to change notification settings - Fork 7.4k
/
install.fish
executable file
·37 lines (26 loc) · 1.02 KB
/
install.fish
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/usr/bin/env fish
set basedir (realpath (dirname (status -f)))
set -x IDF_PATH $basedir
echo "INFO: Using IDF_PATH '$IDF_PATH' for installation."
echo "Detecting the Python interpreter"
source "$IDF_PATH"/tools/detect_python.fish
echo "Checking Python compatibility"
"$ESP_PYTHON" "$IDF_PATH"/tools/python_version_checker.py
for option in $argv
switch "$option"
case -h --help
"$ESP_PYTHON" "$IDF_PATH"/tools/install_util.py print_help fish
exit
end
end
set TARGETS ("$ESP_PYTHON" "$IDF_PATH"/tools/install_util.py extract targets $argv) || exit 1
echo "Installing ESP-IDF tools"
"$ESP_PYTHON" "$IDF_PATH"/tools/idf_tools.py install --targets=$TARGETS
or exit 1
set FEATURES ("$ESP_PYTHON" "$IDF_PATH"/tools/install_util.py extract features $argv) || exit 1
echo "Installing Python environment and packages"
"$ESP_PYTHON" "$IDF_PATH"/tools/idf_tools.py install-python-env --features=$FEATURES || exit 1
echo "All done! You can now run:"
echo ""
echo " . "$basedir"/export.fish"
echo ""