Skip to content

Commit 38db927

Browse files
Run brew update before brew install on Travis CI
1 parent 7716d08 commit 38db927

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

β€Ž.travis.ymlβ€Ž

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
env:
8282
- task=test-dist-zsh
8383
before_script:
84-
- brew install zsh
84+
- brew update && brew install zsh
8585
- type zsh && zsh --version
8686
script:
8787
- ./test-scripts/zsh
@@ -90,7 +90,7 @@ jobs:
9090
env:
9191
- task=test-dist-ksh
9292
before_script:
93-
- brew install ksh
93+
- brew update && brew install ksh
9494
- type ksh && ksh --version || printf ""
9595
script:
9696
- ./test-scripts/ksh
@@ -107,7 +107,7 @@ jobs:
107107
env:
108108
- task=test-dist-bash-brew-install
109109
before_script:
110-
- brew install bash
110+
- brew update && brew install bash
111111
- export PATH="/usr/local/bin:$PATH"
112112
- type bash && bash --version
113113
script:
@@ -117,7 +117,7 @@ jobs:
117117
env:
118118
- task=test-dist-fish
119119
before_script:
120-
- brew install fish
120+
- brew update && brew install fish
121121
- type fish && fish --version
122122
script:
123123
- ./test-scripts/fish

0 commit comments

Comments
Β (0)