1
0
Fork 0
firefox/taskcluster/docker/sentry/prepare.sh
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

18 lines
374 B
Bash
Executable file

#!/bin/sh
set -o errexit
set -o nounset
set -o xtrace
apt-get -y update
# Install:
# * curl to fetch sentry-cli
# * jq to parse hgmo pushlog
apt-get install -y \
curl \
jq
# Install sentry-cli to publish releases
curl -L https://github.com/getsentry/sentry-cli/releases/download/1.63.1/sentry-cli-Linux-x86_64 -o /usr/bin/sentry-cli
chmod +x /usr/bin/sentry-cli