summarylogtreecommitdiffstats
path: root/get_latest.sh
blob: e56590c0f12f6da17a3ec7db6b4e51da3758d881 (plain)
1
2
3
4
5
6
7
8
export "$(grep 'pkgver=' PKGBUILD)"

for arch in amd64 arm arm64 ; do
    wget -O linkerd-$arch https://github.com/linkerd/linkerd2/releases/download/stable-${pkgver}/linkerd2-cli-stable-${pkgver}-linux-$arch
done

sha256sum linkerd-a*
rm linkerd-a*