From 349817f8e0965aa1b63c3bc34c73ec09de363740 Mon Sep 17 00:00:00 2001 From: Rin Date: Sun, 17 Mar 2024 17:49:55 +0800 Subject: [PATCH] fix tar problem --- dist/index.js | 2 +- index.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/index.js b/dist/index.js index 1b2d0fa..ba37377 100644 --- a/dist/index.js +++ b/dist/index.js @@ -30925,7 +30925,7 @@ function setup_precompiled_qemu(version) { "bash", [ "-c", - `mkdir -p /tmp/qemu-${version} && tar -C /tmp/qemu-${version} -xzf /tmp/qemu-${version}-${triplet}.tar.xz && touch /tmp/qemu-${version}/.extracted`, + `mkdir -p /tmp/qemu-${version} && tar -C /tmp/qemu-${version} -xf /tmp/qemu-${version}-${triplet}.tar.xz && touch /tmp/qemu-${version}/.extracted`, ], { stdio: "inherit", diff --git a/index.js b/index.js index cd9af56..c494e0b 100644 --- a/index.js +++ b/index.js @@ -35,7 +35,7 @@ function setup_precompiled_qemu(version) { "bash", [ "-c", - `mkdir -p /tmp/qemu-${version} && tar -C /tmp/qemu-${version} -xzf /tmp/qemu-${version}-${triplet}.tar.xz && touch /tmp/qemu-${version}/.extracted`, + `mkdir -p /tmp/qemu-${version} && tar -C /tmp/qemu-${version} -xf /tmp/qemu-${version}-${triplet}.tar.xz && touch /tmp/qemu-${version}/.extracted`, ], { stdio: "inherit",