mirror of
git://code.qt.io/qt/qt5.git
synced 2026-01-11 01:16:41 +08:00
Reduce verbosity in order to shorten logs and make them more readable. In two cases we just remove the verbose flag. In one other case we undo inlining of a huge script in the command line. Because we run the provisioning scripts in trace mode, this caused the script to be logged, and it was rather long and meaningless since it comes from an external project. Change-Id: I078ee3b3ab2db9425204375deb5815b6526a4466 Reviewed-by: Tony Sarajärvi <tony.sarajarvi@qt.io>
13 lines
338 B
Bash
Executable File
13 lines
338 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
|
|
# Will install homebrew package manager for macOS.
|
|
# WARNING: Requires commandlinetools
|
|
|
|
# TODO audit and cache this file locally, see QTQAINFRA-3134
|
|
curl -L -o /tmp/homebrew_install https://raw.githubusercontent.com/Homebrew/install/master/install
|
|
|
|
/usr/bin/ruby /tmp/homebrew_install </dev/null
|
|
|
|
brew update
|