From 8995a291e05aef6c2ab1a24647355eae87dca391 Mon Sep 17 00:00:00 2001 From: Angus Gratton Date: Wed, 8 Oct 2025 17:03:52 +1100 Subject: [PATCH] tools/ci: Fix typo of pipefail. Regression from 449866cb0af3fc547df6538a6552517cc8974616. Signed-off-by: Angus Gratton --- tools/ci.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ci.sh b/tools/ci.sh index 80749d4b71..815e9bd4b1 100755 --- a/tools/ci.sh +++ b/tools/ci.sh @@ -241,7 +241,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 - (set -o pipefile; zcat xtensa-lx106-elf-standalone.tar.gz | tar x) + (set -o pipefail; 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 }