Skip to content

Commit 2cce041

Browse files
authored
maint: fix error
1 parent dd4cb43 commit 2cce041

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ ARG SHA256SUM=935d72deb16e42739d69644977290395561b7a6db059b316958d97939e9bdf3d
5959

6060
RUN wget --quiet https://repo.anaconda.com/miniconda/Miniconda3-${CONDA_VERSION}-Linux-x86_64.sh -O miniconda.sh && \
6161
echo "${SHA256SUM} miniconda.sh" > miniconda.sha256 && \
62-
if ! sha256sum -cs miniconda.sha256; then exit 1; fi && \
62+
sha256sum -c --status miniconda.sha256 && \
6363
mkdir -p /opt && \
6464
sh miniconda.sh -b -p /opt/conda && \
6565
rm miniconda.sh miniconda.sha256 && \

0 commit comments

Comments
 (0)