Skip to content

Commit 4b00e51

Browse files
committed
no ensure
1 parent b109095 commit 4b00e51

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/deno-compile-win-error.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ensureDirSync } from "@std/fs";
1+
// import { ensureDirSync } from "@std/fs";
22
import { homedir } from "node:os";
33
import * as path from "@std/path";
44

@@ -7,7 +7,9 @@ export function denoCompileWinError() {
77
const whereTheProblemsAre = path.join(home, "problematic");
88

99
try {
10-
ensureDirSync(whereTheProblemsAre);
10+
//ensureDirSync(whereTheProblemsAre);
11+
12+
console.log(whereTheProblemsAre)
1113

1214
throw new Error(
1315
"this will not be logged if compiled\nfor windows on deno v2.1.5",

0 commit comments

Comments
 (0)