Skip to content

Commit d483003

Browse files
authored
hack/build.sh: fix GOARCH set (#198)
Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
1 parent 1d18edd commit d483003

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hack/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ for arch in ${ARCHS}; do
4444
-X ${PACKAGE_NAME}/version.GitCommit=${GIT_COMMIT} \
4545
-X ${PACKAGE_NAME}/version.ReleaseVersion=${RELEASE_VERSION} \
4646
-X ${PACKAGE_NAME}/version.BuildTime=${BUILD_TIME}" \
47-
-o ./bin/${bin}-${RELEASE_VERSION}-${os}-$(go env GOARCH) \
47+
-o ./bin/${bin}-${RELEASE_VERSION}-${os}-${arch} \
4848
./cmd/${bin}
4949
done
5050
done

0 commit comments

Comments
 (0)