We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 162faed commit e9087ddCopy full SHA for e9087dd
lib/porcelain/fix-up.ts
@@ -124,7 +124,7 @@ async function consolidate_lib64(pkg_prefix: Path) {
124
if (!lib64.isDirectory()) return
125
126
const lib = pkg_prefix.join("lib")
127
- lib.mkpath()
+ Deno.mkdirSync(lib.string, { recursive: true })
128
129
for await (const [path, { isFile, isSymlink }] of lib64.ls()) {
130
const dest = lib.join(path.basename())
0 commit comments