From 2cb518625821661cea720c9731459bb63ff89218 Mon Sep 17 00:00:00 2001 From: LordBaryhobal Date: Sun, 15 Sep 2024 00:57:53 +0200 Subject: [PATCH] fixed typo in Dockerfile Typst extraction --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3d2ceca..98fe5a4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ LABEL maintainer="Lord Baryhobal " RUN echo "Installing Typst" \ && wget -q -O /tmp/typst.tar.xz https://github.com/typst/typst/releases/download/v0.11.1/typst-x86_64-unknown-linux-musl.tar.xz \ - && tar -x /tmp/typst.tar.xz -C /tmp/ \ + && tar -xf /tmp/typst.tar.xz -C /tmp/ \ && mv /tmp/typst-x86_64-unknown-linux-musl/typst /usr/bin/typst \ && chmod +x /usr/bin/typst \ && rm -r /tmp/typst-x86_64-unknown-linux-musl \