We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9640fe5 commit 7233c96Copy full SHA for 7233c96
.travis/script.sh
@@ -59,8 +59,10 @@ elif [ "$TARGET" = "Windows" ]; then
59
mkdir artifacts
60
cp -a build/*.zip artifacts
61
elif [ "$TARGET" = "macOS" ]; then
62
- # updating fails sometimes, unable to fetch data off homebrew GitHub repo, so retry a few times
63
- brew update || brew update || brew update || brew update || brew update
+ # updating fails sometimes, unable to fetch data off homebrew GitHub repo, so keep retrying
+ until brew update; do
64
+ sleep 30
65
+ done
66
brew install p7zip
67
mkdir -p tmp/tmp
68
cd tmp/tmp
0 commit comments