We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10dcfc4 commit c2af9e6Copy full SHA for c2af9e6
.gitignore
@@ -1,3 +1,4 @@
1
.idea
2
*.exe
3
-xplane-gateway-downloader
+xplane-gateway-downloader
4
+bin/
build.sh
@@ -0,0 +1,16 @@
+#!/bin/bash
+
+# Build .exe for windows
+GOOS=windows GOARCH=amd64 go build -o bin/xplane-gateway-downloader-windows.exe .
5
6
+# Build for mac 32-bit
7
+#GOOS=darwin GOARCH=386 go build -o bin/xplane-gateway-downloader-386-darwin .
8
9
+# Build for mac 64-bit
10
+GOOS=darwin GOARCH=amd64 go build -o bin/xplane-gateway-downloader-amd64-darwin .
11
12
+# Build for linux 32-bit
13
+GOOS=linux GOARCH=386 go build -o bin/xplane-gateway-downloader-386-linux .
14
15
+# Build for linux 64-bit
16
+GOOS=linux GOARCH=amd64 go build -o bin/xplane-gateway-downloader-amd64-linux .
0 commit comments