We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2c43d2 commit 95f4251Copy full SHA for 95f4251
.github/workflows/release.yaml
@@ -83,7 +83,10 @@ jobs:
83
84
# 2020-06-24: The Homebrew copy of gettext leaks into the macOS build
85
# if it is present. Uninstall gettext to make sure that doesn't happen.
86
- brew uninstall --ignore-dependencies gettext
+ # 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
90
91
# Do the build for the requested target.
92
make -e ${{ matrix.target }}
0 commit comments