Skip to content

Commit

Permalink
docker: Fix armv7 check
Browse files Browse the repository at this point in the history
  • Loading branch information
koush committed Mar 21, 2023
1 parent 98b67f5 commit 506b240
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker/Dockerfile.full
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ RUN apt-get -y install \
python3-setuptools \
python3-wheel

RUN if [ "$(uname -m)" == "armv7l" ]; \
RUN if [ "$(uname -m)" = "armv7l" ]; \
then \
apt-get -y install \
python3-matplotlib \
Expand Down
2 changes: 1 addition & 1 deletion docker/template/Dockerfile.full.header
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ RUN apt-get -y install \
python3-setuptools \
python3-wheel

RUN if [ "$(uname -m)" == "armv7l" ]; \
RUN if [ "$(uname -m)" = "armv7l" ]; \
then \
apt-get -y install \
python3-matplotlib \
Expand Down

0 comments on commit 506b240

Please sign in to comment.