Skip to content

Commit

Permalink
gitlab-ci/brew.sh/curl: use LCD feature set
Browse files Browse the repository at this point in the history
Use the lowest common denominator features available on supported
platforms.
  • Loading branch information
chreekat authored and Mikolaj committed Sep 19, 2023
1 parent bc0c780 commit 3a2ac9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .gitlab/brew.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ brew_dir="${CI_PROJECT_DIR}/.brew"

if [ ! -e "${brew_dir}" ]; then
mkdir -p "${brew_dir}"
curl --fail-with-body -L "https://github.com/Homebrew/brew/archive/refs/tags/${BREW_VERSION}.tar.gz" | tar xz --strip 1 -C "${brew_dir}"
curl --fail -L "https://github.com/Homebrew/brew/archive/refs/tags/${BREW_VERSION}.tar.gz" | tar xz --strip 1 -C "${brew_dir}"
fi

export PATH="${brew_dir}/bin:${brew_dir}/sbin:$PATH"
Expand Down

0 comments on commit 3a2ac9b

Please sign in to comment.