Skip to content
Snippets Groups Projects
Commit 88e965a2 authored by André Anjos's avatar André Anjos 💬
Browse files

[doc][macos] Add update-ci.sh for brew/pip3 updates

parent 72751eca
No related merge requests found
#!/usr/bin/env bash
# Update CI installation
echo "Updating homebrew..."
brew update
brew upgrade
brew cleanup
echo "Updating python packages..."
pip=/usr/local/bin/pip3
${pip} list --outdated --format=freeze | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 ${pip} install -U
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment