7 lines
216 B
Bash
Executable File
7 lines
216 B
Bash
Executable File
#! /bin/bash
|
|
|
|
GOOS=windows GOARCH=amd64 go build -o "$1_windows.exe"
|
|
GOOS=linux GOARCH=amd64 go build -o "$1_linux"
|
|
GOOS=darwin GOARCH=amd64 go build -o "$1_macos"
|
|
GOOS=darwin GOARCH=arm64 go build -o "$1_macos_arm"
|