Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
calebdoxsey committed Apr 17, 2023
1 parent 42c6c33 commit fa6a5b3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 28 deletions.
1 change: 1 addition & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
- name: Install homebrew
run: |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
brew install oras
- name: fetch envoy
Expand Down
5 changes: 4 additions & 1 deletion scripts/fetch-envoy
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ _bin_dir="${_project_root}/bin"

download_undock() {
_host_os="$(uname -s | tr '[:upper:]' '[:lower:]')"
_host_arch="$(uname -m)"
_host_arch="amd64"
if [ "$(uname -m)" == "arm64" ]; then
_host_arch="arm64"
fi
_url="https://github.com/crazy-max/undock/releases/download/v0.4.0/undock_0.4.0_${_host_os}_${_host_arch}.tar.gz"

mkdir -p "$_bin_dir"
Expand Down
27 changes: 0 additions & 27 deletions scripts/fetch-envoy-from-homebrew

This file was deleted.

0 comments on commit fa6a5b3

Please sign in to comment.