From 84c9825966916711900fa630d4ba88bbfd76a561 Mon Sep 17 00:00:00 2001 From: Carlos Palhares Date: Wed, 18 Aug 2021 16:23:01 -0300 Subject: [PATCH] Show errors from bundle Allow for an easier debug when bundler errors out. For instance, bundler could error when the gemspec locks a ruby version prior to 2.6, the version set in this project's Dockerfile. --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 6be1c73..37e3557 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -14,7 +14,7 @@ chmod 0600 ~/.gem/credentials set -x echo "Installing dependencies..." -bundle install > /dev/null 2>&1 +bundle install > /dev/null echo "Running gem release task..." release_command="${RELEASE_COMMAND:-rake release}"