Skip to content

Commit

Permalink
fix: wget quote URL?
Browse files Browse the repository at this point in the history
  • Loading branch information
xynydev committed Sep 22, 2024
1 parent 40bff68 commit d3652e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ FROM cached as build

ARG URL=https://github.com/nushell/nushell/releases/download/0.98.0/nu-0.98.0-x86_64-unknown-linux-gnu.tar.gz

RUN wget -O /tmp/archive.tar.gz $URL && \
RUN wget -O /tmp/archive.tar.gz "$URL" && \
mkdir /tmp/extract/ && \
tar -xzf /tmp/archive.tar.gz -C /tmp/extract/ && \
mv /tmp/extract/nu* /nu/
Expand Down

0 comments on commit d3652e5

Please sign in to comment.