Skip to content

Commit

Permalink
Copies the binary instead of linking for release (envoyproxy#102)
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastienvas authored Feb 16, 2017
1 parent 2f69cc9 commit 8488133
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/release-binary
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ gsutil stat "${DST}/${BINARY_NAME}" \
# Build the binary
bazel build -c dbg //src/envoy/mixer:envoy_tar
BAZEL_TARGET="bazel-bin/src/envoy/mixer/envoy_tar.tar.gz"
ln "${BAZEL_TARGET}" "${BINARY_NAME}"
cp -f "${BAZEL_TARGET}" "${BINARY_NAME}"
sha256sum "${BINARY_NAME}" > "${SHA256_NAME}"

# Copy it to the bucket.
Expand Down

0 comments on commit 8488133

Please sign in to comment.