mirror of
https://github.com/rumanzo/bt2qbt.git
synced 2024-11-09 20:32:33 +01:00
acdf25f526
Darwin i386 build. Fixed platform for windows i386
8 lines
370 B
Bash
Executable File
8 lines
370 B
Bash
Executable File
#!/bin/bash
|
|
GOOS=windows GOACH=amd64 go build -o bt2qbt_v${1}_amd64.exe
|
|
GOOS=windows GOARCH=386 go build -o bt2qbt_v${1}_i386.exe
|
|
GOOS=linux GOARCH=amd64 go build -o bt2qbt_v${1}_amd64_linux
|
|
GOOS=linux GOARCH=386 go build -o bt2qbt_v${1}_i386_linux
|
|
GOOS=darwin GOARCH=amd64 go build -o bt2qbt_v${1}_amd64_macos
|
|
GOOS=darwin GOARCH=386 go build -o bt2qbt_v${1}_i386_macos
|