Skip to content

Commit

Permalink
fix: fix parameter for unzip
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric-2369 committed Oct 14, 2024
1 parent 4cc84cd commit ee3edf8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion debian12-serverstatusrust-client/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ RUN set -eux; \
;; \
esac; \
curl "${URL}" --location --output /home/serverstatus/serverstatus.zip; \
unzip /home/serverstatus/serverstatus.zip --extract-dir /home/serverstatus; \
unzip /home/serverstatus/serverstatus.zip -d /home/serverstatus; \
rm /home/serverstatus/serverstatus.zip

RUN echo '#!/bin/bash' > /home/serverstatus/start.sh \
Expand Down
2 changes: 1 addition & 1 deletion debian12-serverstatusrust-server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ RUN set -eux; \
;; \
esac; \
curl "${URL}" --location --output /home/serverstatus/serverstatus.zip; \
unzip /home/serverstatus/serverstatus.zip --extract-dir /home/serverstatus; \
unzip /home/serverstatus/serverstatus.zip -d /home/serverstatus; \
rm /home/serverstatus/serverstatus.zip

RUN mkdir --parents /home/serverstatus/config \
Expand Down

0 comments on commit ee3edf8

Please sign in to comment.