mirror of
https://github.com/pomerium/pomerium.git
synced 2025-04-29 18:36:30 +02:00
35 lines
872 B
Bash
Executable file
35 lines
872 B
Bash
Executable file
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
PATH="$PATH:$(go env GOPATH)/bin"
|
|
export PATH
|
|
|
|
_project_root="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd)/.."
|
|
_envoy_version=1.19.0
|
|
_dir="$_project_root/internal/envoy/files"
|
|
_target="${TARGET:-"$(go env GOOS)-$(go env GOARCH)"}"
|
|
|
|
# until m1 macs are supported, fallback to x86 and use rosetta
|
|
if [ "$_target" == "darwin-arm64" ]; then
|
|
_target="darwin-amd64"
|
|
fi
|
|
|
|
_url="https://github.com/pomerium/envoy-binaries/releases/download/v${_envoy_version}/envoy-${_target}"
|
|
|
|
curl \
|
|
--compressed \
|
|
--silent \
|
|
--location \
|
|
--time-cond "$_dir/envoy-$_target" \
|
|
--output "$_dir/envoy-$_target" \
|
|
"$_url"
|
|
|
|
curl \
|
|
--compressed \
|
|
--silent \
|
|
--location \
|
|
--time-cond "$_dir/envoy-$_target.sha256" \
|
|
--output "$_dir/envoy-$_target.sha256" \
|
|
"$_url.sha256"
|
|
|
|
echo "$_envoy_version" > "$_dir/envoy-$_target.version"
|