Skip to content

Commit

Permalink
Fix asset name for windows/amd64
Browse files Browse the repository at this point in the history
  • Loading branch information
ngrash committed Jan 22, 2023
1 parent f6217c4 commit 336ee98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion twshim.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ func RuntimeAssetName() (string, error) {
case "linux/amd64":
return "tailwindcss-linux-x64", nil
case "windows/amd64":
return "tailwindcss-windows-x64", nil
return "tailwindcss-windows-x64.exe", nil
default:
return "", fmt.Errorf("distribution not supported: %s", dist)
}
Expand Down

0 comments on commit 336ee98

Please sign in to comment.