Skip to content

Commit

Permalink
hack/build.sh: fix GOARCH set (#198)
Browse files Browse the repository at this point in the history
Signed-off-by: Gyuho Lee <[email protected]>
  • Loading branch information
gyuho authored Jan 25, 2021
1 parent 1d18edd commit d483003
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hack/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ for arch in ${ARCHS}; do
-X ${PACKAGE_NAME}/version.GitCommit=${GIT_COMMIT} \
-X ${PACKAGE_NAME}/version.ReleaseVersion=${RELEASE_VERSION} \
-X ${PACKAGE_NAME}/version.BuildTime=${BUILD_TIME}" \
-o ./bin/${bin}-${RELEASE_VERSION}-${os}-$(go env GOARCH) \
-o ./bin/${bin}-${RELEASE_VERSION}-${os}-${arch} \
./cmd/${bin}
done
done
Expand Down

0 comments on commit d483003

Please sign in to comment.