Skip to content

Commit

Permalink
Remove echo statement from protoc script (linkerd#1380)
Browse files Browse the repository at this point in the history
Since this is a wrapper script, we don't want the wrapper writing to
stdout.
  • Loading branch information
klingerf authored Jun 12, 2017
1 parent 7dd505d commit cbef41b
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion protoc
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ protocversion=3.0.0
protocurl="https://github.com/google/protobuf/releases/download/v${protocversion}/protoc-${protocversion}-${os}-${arch}.zip"

if [ ! -f "$protocbin" ]; then
echo "downloading $protocbin"
tmp=$(mktemp -d -t protoc.XXX)
pushd "$tmp" > /dev/null
curl -L --silent --fail -o "$protocbin.zip" "$protocurl"
Expand Down

0 comments on commit cbef41b

Please sign in to comment.