mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-08-02 23:12:51 +02:00
16 lines
392 B
Bash
Executable file
16 lines
392 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Copyright The OpenTelemetry Authors
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
set -e
|
|
apt-get update
|
|
apt-get install --no-install-recommends --no-install-suggests -y \
|
|
build-essential \
|
|
ca-certificates \
|
|
wget \
|
|
git \
|
|
valgrind \
|
|
lcov \
|
|
iwyu \
|
|
pkg-config
|