Skip to content

Commit

Permalink
fix tar problem
Browse files Browse the repository at this point in the history
  • Loading branch information
shinohara-rin committed Mar 17, 2024
1 parent 6c33efa commit 349817f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 349817f

Please sign in to comment.