Skip to content

Commit 50c8892

Browse files
feat: filter noisy tar warnings in CI logs
1 parent 25be21d commit 50c8892

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

releng/update-site-tests/run-all-cases.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,8 @@ echo "Downloading Espressif-IDE from: $ESPRESSIF_IDE_URL"
106106
curl -fsSL "$ESPRESSIF_IDE_URL" -o "$ESP_IDE_WORK/espressif-ide.tar.gz"
107107

108108
echo "Extracting Espressif-IDE..."
109-
tar -xzf "$ESP_IDE_WORK/espressif-ide.tar.gz" -C "$ESP_IDE_WORK"
109+
tar -xzf "$ESP_IDE_WORK/espressif-ide.tar.gz" -C "$ESP_IDE_WORK" \
110+
2> >(grep -v "LIBARCHIVE.creationtime" >&2)
110111

111112
# Figure out where the eclipse executable is after extraction
112113
# Usually archive contains a top-level "eclipse/" directory

0 commit comments

Comments
 (0)