Skip to content

Commit 99145c1

Browse files
committed
wip
1 parent 2e84cb7 commit 99145c1

File tree

1 file changed

+5
-0
lines changed
  • packages/@tailwindcss-standalone/scripts

1 file changed

+5
-0
lines changed

packages/@tailwindcss-standalone/scripts/build.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,11 @@ async function buildForPlatform(triple: string, outfile: string) {
1616
// statically bundle the proper binaries for musl vs glibc
1717
cmd = cmd.env({
1818
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,
1924
})
2025

2126
return await cmd

0 commit comments

Comments
 (0)