We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd68068 commit 18af03eCopy full SHA for 18af03e
hack/e2e.sh
@@ -65,7 +65,8 @@ on_exit() {
65
find "${ARTIFACTS}" -type f -name pod-logs.tar.gz | while IFS= read -r tarball; do
66
echo "Unpacking ${tarball} for secrets replacement"
67
mkdir -p "${tarball}-unpacked"
68
- tar -xzf "${tarball}" -C "${tarball}-unpacked"
+ # on_exit should not fail due to broken tarballs
69
+ tar -xzf "${tarball}" -C "${tarball}-unpacked" || true
70
rm "${tarball}"
71
done
72
# Delete non-text files from artifacts directory to not leak files accidentially
0 commit comments