File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22set -e
33
4+ source <( grep -v ' ^#' .env | sed -E ' s|^(.+)=(.*)$|: ${\1=\2}; export \1|g' )
5+
46dc=" docker-compose --no-ansi"
57dcr=" $dc run --rm"
68
@@ -171,12 +173,8 @@ echo ""
171173# redirection below and pass it through grep, ignoring all lines having this '-onpremise-local' suffix.
172174$dc pull -q --ignore-pull-failures 2>&1 | grep -v -- -onpremise-local || true
173175
174- if [ -z " $SENTRY_IMAGE " ]; then
175- docker pull getsentry/sentry:${SENTRY_VERSION:- latest}
176- else
177- # We may not have the set image on the repo (local images) so allow fails
178- docker pull $SENTRY_IMAGE || true ;
179- fi
176+ # We may not have the set image on the repo (local images) so allow fails
177+ docker pull $SENTRY_IMAGE || true ;
180178
181179echo " "
182180echo " Building and tagging Docker images..."
You can’t perform that action at this time.
0 commit comments