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 2e84cb7 commit 99145c1Copy full SHA for 99145c1
packages/@tailwindcss-standalone/scripts/build.ts
@@ -16,6 +16,11 @@ async function buildForPlatform(triple: string, outfile: string) {
16
// statically bundle the proper binaries for musl vs glibc
17
cmd = cmd.env({
18
PLATFORM_LIBC: triple.includes('-musl') ? 'musl' : 'glibc',
19
+
20
+ // This is a fix for binary downloads failing on Windows CI
21
+ USERPROFILE: undefined,
22
+ HOMEDRIVE: undefined,
23
+ HOMEPATH: undefined,
24
})
25
26
return await cmd
0 commit comments