We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b109095 commit 4b00e51Copy full SHA for 4b00e51
src/deno-compile-win-error.ts
@@ -1,4 +1,4 @@
1
-import { ensureDirSync } from "@std/fs";
+// import { ensureDirSync } from "@std/fs";
2
import { homedir } from "node:os";
3
import * as path from "@std/path";
4
@@ -7,7 +7,9 @@ export function denoCompileWinError() {
7
const whereTheProblemsAre = path.join(home, "problematic");
8
9
try {
10
- ensureDirSync(whereTheProblemsAre);
+ //ensureDirSync(whereTheProblemsAre);
11
+
12
+ console.log(whereTheProblemsAre)
13
14
throw new Error(
15
"this will not be logged if compiled\nfor windows on deno v2.1.5",
0 commit comments