Skip to content

Commit

Permalink
Dockerfile.rhel: fix a bash typo
Browse files Browse the repository at this point in the history
A regression was introduced in the Dockerfile, with a typo in
the condition:
openshift#26170

This patch fixes it.
  • Loading branch information
EmilienM committed May 31, 2021
1 parent ede8844 commit 8eaf838
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion images/tests/Dockerfile.rhel
Expand Up @@ -8,7 +8,7 @@ RUN make; \
FROM registry.ci.openshift.org/ocp/4.8:tools
COPY --from=builder /tmp/build/openshift-tests /usr/bin/
RUN PACKAGES="git gzip util-linux" && \
if [ $HOSTTYPE = x86_64] || [ $HOSTTYPE = ppc64le ]; then PACKAGES="$PACKAGES python3-cinderclient"; fi && \
if [ $HOSTTYPE = x86_64 ] || [ $HOSTTYPE = ppc64le ]; then PACKAGES="$PACKAGES python3-cinderclient"; fi && \
yum install --setopt=tsflags=nodocs -y $PACKAGES && yum clean all && rm -rf /var/cache/yum/* && \
git config --system user.name test && \
git config --system user.email test@test.com && \
Expand Down

0 comments on commit 8eaf838

Please sign in to comment.