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.
|
#!/bin/bash |
|
|
|
# Copyright The OpenTelemetry Authors |
|
# SPDX-License-Identifier: Apache-2.0 |
|
set -e |
|
|
|
# TODO: add support for Ninja on Mac OS X |
|
wget -O /tmp/ninja.zip https://github.com/ninja-build/ninja/releases/download/v1.10.1/ninja-linux.zip |
|
sudo unzip /tmp/ninja.zip -d /usr/local/bin/
|
|
|