Skip to content

Commit 95f4251

Browse files
committed
Remove use of homebrew's version of curl.
1 parent b2c43d2 commit 95f4251

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/release.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,10 @@ jobs:
8383
8484
# 2020-06-24: The Homebrew copy of gettext leaks into the macOS build
8585
# if it is present. Uninstall gettext to make sure that doesn't happen.
86-
brew uninstall --ignore-dependencies gettext
86+
# 2021-01-02: Uninstall curl as well. We need curl to download the
87+
# source bundles, but Homebrew's curl has a runtime dependency on
88+
# gettext. However macOS provides a version of curl that works fine.
89+
brew uninstall --ignore-dependencies gettext curl
8790
8891
# Do the build for the requested target.
8992
make -e ${{ matrix.target }}

0 commit comments

Comments
 (0)