Explorar el Código

Fix install.fish

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
Kelvie Wong hace 4 años
padre
commit
4a963b40fa
Se han modificado 1 ficheros con 1 adiciones y 2 borrados
  1. 1 2
      install.fish

+ 1 - 2
install.fish

@@ -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