Skip to content

Commit

Permalink
build: fix arch in release script
Browse files Browse the repository at this point in the history
  • Loading branch information
kylebrandt committed Oct 10, 2018
1 parent 53ee2f2 commit 67a8ce4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ build linux arm 7
if [ "$GITHUB_ACCESS_TOKEN" = "" ]; then
echo GITHUB_ACCESS_TOKEN not set: not running githubRelease.go
else
GOOS=darwin
GOOS=linux
GOARCH=amd64
export BUILD_NUMBER=`${OUTPUTDIR}bosun-darwin-amd64 -version | awk '{print $3}'`
export BUILD_NUMBER=`${OUTPUTDIR}bosun-linux-amd64 -version | awk '{print $3}'`
go run build/release/githubRelease.go
fi

0 comments on commit 67a8ce4

Please sign in to comment.