summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIm-Beast <franik.mateusz@gmail.com>2024-12-19 15:28:54 +0100
committerIm-Beast <franik.mateusz@gmail.com>2024-12-19 15:29:04 +0100
commit31d2146961f42e5ea66ee9342cd003da7c3bf6ae (patch)
treeafe2a0690f96ca2fe33d448a8d253e2b45ddfb78
parent89e8709650c293355f0cd89eaa3c49a591056c1d (diff)
tests: i am groot
-rwxr-xr-xtests/utils.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/utils.ts b/tests/utils.ts
index 80940ef..2db7ce2 100755
--- a/tests/utils.ts
+++ b/tests/utils.ts
@@ -61,6 +61,7 @@ export async function extract(path: string, out: string) {
} else if (path.endsWith(".zip")) {
await $.raw`unzip ${path} -nu -d ${outDir}`;
} else if (path.endsWith(".xz")) {
+ await $.raw`tree ${dirname(path)}`;
await $.raw`xz -kd ${path}`;
await Deno.rename(path.slice(0, -3), out);
} else {