1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

fix(build): manually update brew to workaround autoupdate bug

This commit is contained in:
Anthony Bilinski 2019-01-12 19:21:16 -08:00
parent 92d3c959a1
commit c9cb5fefdd
No known key found for this signature in database
GPG Key ID: 2AA8E0DA1B31FB3C

View File

@ -21,6 +21,11 @@ set -eu -o pipefail
# accelerate builds with ccache # accelerate builds with ccache
install_ccache() { install_ccache() {
# manually update even though `install` will already update, due to bug:
# Please don't worry, you likely hit a bug auto-updating from an old version.
# Rerun your command, everything is up-to-date and fine now.
echo "Updating brew..."
brew update
echo "Installing ccache..." echo "Installing ccache..."
brew install ccache brew install ccache
} }