mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Reduce sub-shell and use &&
instead of ;
This commit is contained in:
parent
8882986d97
commit
45bed2850e
1 changed files with 1 additions and 1 deletions
2
.github/workflows/macos.yml
vendored
2
.github/workflows/macos.yml
vendored
|
@ -20,7 +20,7 @@ jobs:
|
|||
sudo /usr/libexec/ApplicationFirewall/socketfilterfw --getglobalstate
|
||||
- name: Install libraries
|
||||
run: |
|
||||
brew update || (sleep 5; brew update) || (sleep 60; brew update)
|
||||
brew update || { sleep 5 && brew update; } || { sleep 60 && brew update; }
|
||||
brew install gdbm gmp libffi openssl@1.1 zlib autoconf automake libtool readline
|
||||
# Not using official actions/checkout because it's unstable and sometimes doesn't work for a fork.
|
||||
- name: Checkout ruby/ruby
|
||||
|
|
Loading…
Add table
Reference in a new issue