install.fish script didn't catch error exit code from idf_tools.py. Now it does. Signed-off-by: Marek Fiala <marek.fiala@espressif.com> Closes: https://github.com/espressif/esp-idf/pull/7325
@@ -14,8 +14,7 @@ else
end
echo "Installing ESP-IDF tools"
"$ESP_PYTHON" "$IDF_PATH"/tools/idf_tools.py install --targets=$TARGETS
- exit 1
-end
+or exit 1
echo "Installing Python environment and packages"
"$ESP_PYTHON" "$IDF_PATH"/tools/idf_tools.py install-python-env