try with the latest node, as we no longer require node 10

This commit is contained in:
Ben Jackson 2020-08-21 17:49:07 +01:00 committed by GitHub
commit cc06605b40
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -75,9 +75,8 @@ stages:
vmImage: 'macOS-10.14'
steps:
- bash: |
brew unlink node@6
brew update
for p in macvim node@10 tcl-tk llvm; do
for p in macvim node tcl-tk llvm; do
brew install $p
brew outdated $p || brew upgrade $p
done