We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68e3f69 commit 72f747bCopy full SHA for 72f747b
.gitignore
@@ -1 +1,2 @@
1
-consul-fs
+consul-fs
2
+dist
build.sh
@@ -0,0 +1,17 @@
+#!/usr/bin/env bash
+
3
+RELEASE=0.1
4
+dist=dist
5
+bin=consul-fs
6
7
+function build {
8
+ GOOS=$1 GOARCH=$2 go build -o $bin
9
+ package=$bin-$RELEASE-$1-$2.tar.gz
10
+ tar cvzf $package $bin
11
+ mv $package $dist
12
+ rm $bin
13
+}
14
15
+mkdir -p $dist
16
+build darwin amd64
17
+build linux amd64
0 commit comments