We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc6da77 commit 014222dCopy full SHA for 014222d
2 files changed
.gitignore
@@ -13,3 +13,5 @@
13
14
# Dependency directories (remove the comment below to include it)
15
# vendor/
16
+
17
+dist/
build-releases.sh
@@ -0,0 +1,9 @@
1
+#!/bin/bash
2
3
+APP="simple-tee-proxy"
4
+SOURCE="cmd/$APP.go"
5
6
+GOOS=linux GOARCH=arm go build -o "dist/$APP-linux-arm" "$SOURCE"
7
+GOOS=linux GOARCH=amd64 go build -o "dist/$APP-linux-amd64" "$SOURCE"
8
+GOOS=freebsd GOARCH=amd64 go build -o "dist/$APP-freebsd-amd64" "$SOURCE"
9
+GOOS=windows GOARCH=amd64 go build -o "dist/$APP-windows-amd64.exe" "$SOURCE"
0 commit comments