We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee41ac3 commit 263db93Copy full SHA for 263db93
scripts/build_skia.ts
@@ -53,7 +53,9 @@ if (Deno.env.get("SKIA_FROM_SOURCE") !== "1") {
53
"-o",
54
"-d",
55
"../",
56
- new URL(`../skia/out/Release/prebuilt.zip`, import.meta.url).pathname,
+ new URL(`../skia/out/Release/prebuilt.zip`, import.meta.url).pathname.slice(
57
+ Deno.build.os === "windows" ? 1 : 0,
58
+ ),
59
);
60
console.log(`Downloaded prebuilt binaries (${relName}, ${os})`);
61
Deno.exit(0);
0 commit comments