summaryrefslogtreecommitdiffstats
path: root/ci/sha256.sh
blob: 927c2e0f63758b1d0ab35247cc044d550c9a820e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

if [ $# != 1 ]; then
  echo "Usage: $(basename $0) version" >&2
  exit 1
fi
version="$1"

for arch in i686 x86_64; do
  for target in apple-darwin unknown-linux-musl; do
    url="https://github.com/BurntSushi/ripgrep/releases/download/$version/ripgrep-$version-$arch-$target.tar.gz"
    sha=$(curl -L -s "$url" | sha256sum)
    echo $version-$arch-$target $sha
  done
done