Skip to content

Commit

Permalink
test: Fix git hash emptiness check in postgres-head Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
sehrope committed May 26, 2021
1 parent 98faa23 commit 0568d07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/postgres-head/Dockerfile
Expand Up @@ -31,7 +31,7 @@ ARG GIT_SHA
RUN mkdir -p /build/postgres \
&& git clone -b "${GIT_TAG}" --single-branch "${GIT_URL}" --depth 10 /build/postgres \
&& cd /build/postgres \
&& [[ -z "${GIT_SHA:-}" ]] || git reset --hard "${GIT_SHA:-}"
&& [ -z "${GIT_SHA:-}" ] || git reset --hard "${GIT_SHA:-}"

# Default configure options that can be overridden with build arg
ARG CONFIGURE_OPTS=" \
Expand Down

0 comments on commit 0568d07

Please sign in to comment.