Skip to content

Commit 8488133

Browse files
authored
Copies the binary instead of linking for release (istio#102)
1 parent 2f69cc9 commit 8488133

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

script/release-binary

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ gsutil stat "${DST}/${BINARY_NAME}" \
3838
# Build the binary
3939
bazel build -c dbg //src/envoy/mixer:envoy_tar
4040
BAZEL_TARGET="bazel-bin/src/envoy/mixer/envoy_tar.tar.gz"
41-
ln "${BAZEL_TARGET}" "${BINARY_NAME}"
41+
cp -f "${BAZEL_TARGET}" "${BINARY_NAME}"
4242
sha256sum "${BINARY_NAME}" > "${SHA256_NAME}"
4343

4444
# Copy it to the bucket.

0 commit comments

Comments
 (0)