From e8ac0e6c75085226de3e0f47f7a4fd0d7611fbe3 Mon Sep 17 00:00:00 2001 From: Adrien Delorme Date: Mon, 6 May 2019 11:06:38 +0200 Subject: [PATCH] scripts/build.sh: don't discard stderr when copying packer fix #7604 --- scripts/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build.sh b/scripts/build.sh index a7b779aea..0fa86d165 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -145,7 +145,7 @@ IFS="${OLDIFS}" # Copy our OS/Arch to the bin/ directory echo "==> Copying binaries for this platform..." DEV_PLATFORM="./pkg/${XC_OS}_${XC_ARCH}" -for F in $(find ${DEV_PLATFORM} -mindepth 1 -maxdepth 1 -type f 2>/dev/null); do +for F in $(find ${DEV_PLATFORM} -mindepth 1 -maxdepth 1 -type f); do cp -v ${F} bin/ cp -v ${F} "${MAIN_GOPATH}/bin/" done