Skip to content

Commit 282a022

Browse files
committed
bump deps
1 parent dd9d937 commit 282a022

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

deno.jsonc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@
1919
"deno.land": "^1.30"
2020
}
2121
},
22-
"importMap": "https://raw.githubusercontent.com/teaxyz/cli/v0.26.0/import-map.json"
22+
"importMap": "https://raw.githubusercontent.com/teaxyz/cli/v0.26.4/import-map.json"
2323
}

lib/useSourceUnarchiver.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export default function useSourceUnarchiver(): Response {
2424
if (ZipUnarchiver.supports(opts.zipfile)) {
2525
const stripComponents = opts.stripComponents ?? 0
2626
const needsTmpdir = stripComponents > 0
27-
const dstdir = needsTmpdir ? Path.mktmp() : opts.dstdir.mkpath()
27+
const dstdir = needsTmpdir ? Path.mktemp({}) : opts.dstdir.mkpath()
2828
try {
2929
unarchiver = new ZipUnarchiver({ verbosity, ...opts, dstdir })
3030
if (needsTmpdir) {

0 commit comments

Comments
 (0)