Skip to content

Commit

Permalink
fixed bash syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
algchoo committed Jul 10, 2024
1 parent 431c99d commit 1715c09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion container/apache-mesos/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ RUN apt-get install -y aventer-mesos
ENV EXPORTER_URL=""
RUN ARCH=$(uname -m) && \
echo $ARCH && \
if [ "${ARCH}" = "arm64" || "${ARCH}" = "aarch64" ]; then \
if [ "${ARCH}" = "arm64" ] || [ "${ARCH}" = "aarch64" ]; then \
EXPORTER_URL="https://github.com/mesos/mesos_exporter/releases/download/v1.1.2/mesos_exporter-1.1.2.linux-arm64.tar.gz"; \
else \
EXPORTER_URL="https://github.com/mesos/mesos_exporter/releases/download/v1.1.2/mesos_exporter-1.1.2.linux-amd64.tar.gz"; \
Expand Down

0 comments on commit 1715c09

Please sign in to comment.