You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
356 B
10 lines
356 B
#!/bin/bash |
|
|
|
# Copyright The OpenTelemetry Authors |
|
# SPDX-License-Identifier: Apache-2.0 |
|
|
|
pushd /tmp |
|
curl -OL https://github.com/protocolbuffers/protobuf/releases/download/v3.14.0/protoc-3.14.0-linux-x86_64.zip |
|
unzip -o protoc-3.14.0-linux-x86_64.zip -d /usr/local/ |
|
update-alternatives --install /usr/bin/protoc protoc /usr/local/bin/protoc 1 --force |
|
popd
|
|
|