Sha256: 00b4255ed0db27d4ff501ebf6ee6a66f4129895ba78a2e63e44591c00f76f51f

Contents?: true

Size: 762 Bytes

Versions: 2

Compression:

Stored size: 762 Bytes

Contents

#!/usr/bin/env bash

set -e

# ensure certs, curl and gpg are available before running them to setup the github repo
apt-get update
apt-get -y install \
  ca-certificates="20210119" \
  curl="7.74.0-1.3+deb11u3" \
  gnupg="2.2.27-2+deb11u2" \
  lsb-release="11.1.0" \

# instructions from https://github.com/cli/cli/blob/trunk/docs/install_linux.md#debian-ubuntu-linux-apt
curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | gpg --dearmor -o /usr/share/keyrings/githubcli-archive-keyring.gpg
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | tee /etc/apt/sources.list.d/github-cli.list > /dev/null

apt-get update
apt-get -y install gh

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
splunk-otel-1.3.0 scripts/install-release-deps.sh
splunk-otel-1.1.3 scripts/install-release-deps.sh