Skip to content

Commit 4c756eb

Browse files
authored
fix(Zig/ZZZ): tar and mv cmd
1 parent 224866b commit 4c756eb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frameworks/Zig/zzz/zzz.dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ RUN apt-get update && \
1212
ARG ZIG_VER=0.14.1
1313
RUN wget https://ziglang.org/download/${ZIG_VER}/zig-$(uname -m)-linux-${ZIG_VER}.tar.xz
1414

15-
RUN tar -xvf zig-linux-$(uname -m)-${ZIG_VER}.tar.xz
15+
RUN tar -xvf zig-$(uname -m)-linux-${ZIG_VER}.tar.xz
1616

17-
RUN mv zig-linux-$(uname -m)-${ZIG_VER} /usr/local/zig
17+
RUN mv zig-$(uname -m)-linux-${ZIG_VER} /usr/local/zig
1818

1919
ENV PATH="/usr/local/zig:$PATH"
2020

0 commit comments

Comments
 (0)