Skip to content

Commit 336ee98

Browse files
committed
Fix asset name for windows/amd64
1 parent f6217c4 commit 336ee98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

twshim.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ func RuntimeAssetName() (string, error) {
6767
case "linux/amd64":
6868
return "tailwindcss-linux-x64", nil
6969
case "windows/amd64":
70-
return "tailwindcss-windows-x64", nil
70+
return "tailwindcss-windows-x64.exe", nil
7171
default:
7272
return "", fmt.Errorf("distribution not supported: %s", dist)
7373
}

0 commit comments

Comments
 (0)