mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-08-02 23:12:51 +02:00
10 lines
356 B
Bash
Executable file
10 lines
356 B
Bash
Executable file
#!/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
|