Skip to content

Commit 9a4fe33

Browse files
committed
CI: Fix error at installing gettext
1 parent 40b8eed commit 9a4fe33

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/ci-macvim.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,10 @@ jobs:
9595
env:
9696
HOMEBREW_NO_AUTO_UPDATE: 1
9797
run: |
98-
brew install -s gettext.rb # This will be a no-op if gettext was cached
99-
brew link gettext # If gettext was cached, this step is necessary to relink it to /usr/local/
98+
# This will be a no-op if gettext was cached
99+
brew install --formula -s ./gettext.rb
100+
# If gettext was cached, this step is necessary to relink it to /usr/local/
101+
brew link gettext
100102
101103
- name: Create universal gettext with arm64 bottle
102104
if: matrix.publish && steps.cache-gettext.outputs.cache-hit != 'true'

0 commit comments

Comments
 (0)