5 lines
186 B
Bash
5 lines
186 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
GOOS=windows GOARCH=386 go build -o bin/toolheim_windows.exe .
|
||
|
GOOS=linux GOARCH=amd64 go build -o bin/toolheim_linux .
|
||
|
GOOS=darwin GOARCH=arm64 go build -o bin/toolheim_osx .
|