diff options
| author | Jeff Epler <jepler@gmail.com> | 2025-09-03 13:50:28 -0500 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2025-10-08 15:08:41 +1100 |
| commit | 449866cb0af3fc547df6538a6552517cc8974616 (patch) | |
| tree | d703312682d966e7c03fc78eda79dc8a85543a67 | |
| parent | 0224b998636af09157a033933012e669cf12a071 (diff) | |
tools/ci.sh: Exit with error if zcat fails during ci_esp8266_setup.
Signed-off-by: Jeff Epler <jepler@unpythonic.net>
| -rwxr-xr-x | tools/ci.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/ci.sh b/tools/ci.sh index 17044edf2..e6f33416b 100755 --- a/tools/ci.sh +++ b/tools/ci.sh @@ -232,7 +232,7 @@ function ci_esp32_build_c2_c6 { function ci_esp8266_setup { sudo pip3 install pyserial esptool==3.3.1 pyelftools ar wget https://micropython.org/resources/xtensa-lx106-elf-standalone.tar.gz - zcat xtensa-lx106-elf-standalone.tar.gz | tar x + (set -o pipefile; zcat xtensa-lx106-elf-standalone.tar.gz | tar x) # Remove this esptool.py so pip version is used instead rm xtensa-lx106-elf/bin/esptool.py } |
