Skip to content

Commit

Permalink
#87 Fixing binaries were generated for wrong arch (#99)
Browse files Browse the repository at this point in the history
  • Loading branch information
mageddo authored Dec 4, 2018
1 parent e449f04 commit 4f4fe4f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### 2.10.2
* Fixing binaries were generated for wrong arch

### 2.10.1
* Official support for ARM

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.10.1
2.10.2
4 changes: 2 additions & 2 deletions builder.bash
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@ case $1 in
;;

compile )
GOOS=$2
GOARCH=$3
export GOOS=$2
export GOARCH=$3
echo "> Compiling os=${GOOS}, arch=${GOARCH}"
go build -o $PWD/build/dns-proxy-server -ldflags "-X github.com/mageddo/dns-proxy-server/flags.version=$APP_VERSION"
TAR_FILE=dns-proxy-server-${GOOS}-${GOARCH}-${APP_VERSION}.tgz
Expand Down

0 comments on commit 4f4fe4f

Please sign in to comment.