Skip to content

Commit 2965b28

Browse files
authored
Merge pull request #200 from hannobraun/win64-support
Fix tool download on 64-bit Windows
2 parents 906c87e + fb7f85e commit 2965b28

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

tools/download.go

+5-4
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,11 @@ type index struct {
5151
}
5252

5353
var systems = map[string]string{
54-
"linuxamd64": "x86_64-linux-gnu",
55-
"linux386": "i686-linux-gnu",
56-
"darwinamd64": "apple-darwin",
57-
"windows386": "i686-mingw32",
54+
"linuxamd64": "x86_64-linux-gnu",
55+
"linux386": "i686-linux-gnu",
56+
"darwinamd64": "apple-darwin",
57+
"windows386": "i686-mingw32",
58+
"windowsamd64": "i686-mingw32",
5859
}
5960

6061
func mimeType(data []byte) (string, error) {

0 commit comments

Comments
 (0)