From 8f2e2d044f37785117dbe8a0e5818a5fbb757a11 Mon Sep 17 00:00:00 2001 From: Laszlo Kiss-Kollar Date: Mon, 19 Jul 2021 21:15:43 +0100 Subject: [PATCH] fixup! Install bash on Alpine --- docker/build_scripts/install-entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/build_scripts/install-entrypoint.sh b/docker/build_scripts/install-entrypoint.sh index 4b468cb1..aa104a9b 100755 --- a/docker/build_scripts/install-entrypoint.sh +++ b/docker/build_scripts/install-entrypoint.sh @@ -4,7 +4,7 @@ # - install bash on Alpine as most scripts require it # Stop at any error, show all commands -set -exuo +set -exu # Set build environment variables MY_DIR=$(dirname "$0") @@ -20,7 +20,7 @@ if [ "${AUDITWHEEL_PLAT}" = "manylinux2010_i686" ] || [ "${AUDITWHEEL_PLAT}" = " # the following script takes care of cleaning-up some things # and since it's also needed in the finalize step, everything's # centralized in this script to avoid code duplication - LC_ALL=C "${MY_DIR}"/update-system-packages.sh + LC_ALL=C "${MY_DIR}/update-system-packages.sh" fi if [ "${AUDITWHEEL_POLICY}" = "musllinux_1_1" ]; then