From 83160e8bdbebfea2c0f02849b545b9cf1b30c324 Mon Sep 17 00:00:00 2001 From: Burak Yigit Kaya Date: Mon, 25 May 2020 10:18:18 +0300 Subject: [PATCH] fix(gcb): We need to pull SENTRY_IMAGE on GCB Follow up to #514. --- install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 38336ca..1893bf7 100755 --- a/install.sh +++ b/install.sh @@ -157,7 +157,8 @@ $dc pull -q --ignore-pull-failures 2>&1 | grep -v -- -onpremise-local || true if [ -z "$SENTRY_IMAGE" ]; then docker pull getsentry/sentry:${SENTRY_VERSION:-latest} else - echo "SENTRY_IMAGE is explicitly set, skipped pulling." + # We may not have the set image on the repo (local images) so allow fails + docker pull $SENTRY_IMAGE || true; fi echo ""