From bfd1a31d0e590c8545df7159a9e61febbd220370 Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Sun, 9 Jan 2022 11:07:37 +0100 Subject: [PATCH] support/download/go-post-process: drop -o pipefail This breaks the post_process_unpack() function in support/download/helpers, which had a sequence of pipe, with "head" that can abort early and cause the pipe to fail. Fixes intermitent: make[1]: *** [package/pkg-generic.mk:190: /builds/tpetazzoni/buildroot/test-output/TestDockerCompose/build/containerd-1.5.8/.stamp_downloaded] Error 141 Signed-off-by: Thomas Petazzoni --- support/download/go-post-process | 1 - 1 file changed, 1 deletion(-) diff --git a/support/download/go-post-process b/support/download/go-post-process index be202a4c0f..ef96a76948 100755 --- a/support/download/go-post-process +++ b/support/download/go-post-process @@ -1,7 +1,6 @@ #!/usr/bin/env bash set -e -set -o pipefail . "${0%/*}/helpers"