From c20bc503e4b36f2925d52fae24ae3248fedf1d38 Mon Sep 17 00:00:00 2001 From: f Date: Sat, 4 Feb 2023 13:37:04 -0300 Subject: [PATCH] fix: su-exec tries to exec the env var --- bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap.sh b/bootstrap.sh index 9f43ff3..d25b689 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -3,7 +3,7 @@ test -n "${EXTRA_PKGS}" && apk add --no-cache ${EXTRA_PKGS} test -n "${EXTRA_GEMS}" && gem install --no-user-install --no-document ${EXTRA_GEMS} -su-exec builder GEM_COMPILER_FLAGS="${GEM_COMPILER_FLAGS}" /usr/local/bin/gem-compiler +GEM_COMPILER_FLAGS="${GEM_COMPILER_FLAGS}" su-exec builder /usr/local/bin/gem-compiler exit_status=$?