From 336ee9858270d4386fa56e7b02e9db1b53e116ea Mon Sep 17 00:00:00 2001 From: Nico Grashoff Date: Sun, 22 Jan 2023 19:35:00 +0100 Subject: [PATCH] Fix asset name for windows/amd64 --- twshim.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/twshim.go b/twshim.go index 7d202f2..35e8d46 100644 --- a/twshim.go +++ b/twshim.go @@ -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) }