4 lines
158 B
Bash
4 lines
158 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
env GOOS=linux GOARCH=amd64 go build -o timepercentage.linux-amd64.exe
|
||
|
env GOOS=windows GOARCH=amd64 go build -o timepercentage.windows-amd64.exe
|