Bug 1839315: part 4) Link from `SheetLoadData::mWasAlternate` to spec. r=emilio DONTBUILD
[gecko.git] / taskcluster / docker / sentry / prepare.sh
blob7cce3e1955cb4a2f416ff8921a28b91644a6cb78
1 #!/bin/sh
3 set -o errexit
4 set -o nounset
5 set -o xtrace
7 apt-get -y update
9 # Install:
10 # * curl to fetch sentry-cli
11 # * jq to parse hgmo pushlog
12 apt-get install -y \
13 curl \
16 # Install sentry-cli to publish releases
17 curl -L https://github.com/getsentry/sentry-cli/releases/download/1.63.1/sentry-cli-Linux-x86_64 -o /usr/bin/sentry-cli
18 chmod +x /usr/bin/sentry-cli