We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5b093b commit 2bb8ad8Copy full SHA for 2bb8ad8
scripts/build-mlir.mjs
@@ -40,7 +40,7 @@ async function download({ pkg, version, outdir = "." }) {
40
// unpack
41
if (!(await zx.fs.exists(zx.path.join(outdir, pkg)))) {
42
await zx.fs.mkdir(zx.path.join(outdir, pkg), { recursive: true });
43
- await $`tar jxf ${outdir}/${fileName} -C ${outdir}/${pkg} --strip-components=1`.quiet();
+ await $`tar xf ${outdir}/${fileName} -C ${outdir}/${pkg} --strip-components=1`.quiet();
44
}
45
46
0 commit comments