summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorJames E. Blair <jim@acmegating.com>2021-10-21 13:59:26 -0700
committerJames E. Blair <jim@acmegating.com>2021-10-21 13:59:26 -0700
commit01ffc3a6c11154fac814bac759e40adf488beba3 (patch)
treed33aee5edb4db2614ef7a0c871bea5ea6abdbb5d /tools
parent220534c0f735b6a8d57df4bd89adc5e0561a69a0 (diff)
downloadzuul-01ffc3a6c11154fac814bac759e40adf488beba3.tar.gz
Don't use --verbose with yarn
This appears to output something like 145,000 lines in our build logs, so let's be less verbose. Change-Id: Ie41c1f21a090de84cb51331c00668b9b7f06379a
Diffstat (limited to 'tools')
-rwxr-xr-xtools/pip.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/pip.sh b/tools/pip.sh
index eef5276a4..a01afa7ae 100755
--- a/tools/pip.sh
+++ b/tools/pip.sh
@@ -53,7 +53,7 @@ then
# Be forgiving of package retrieval errors
attempts=0
set +e
- until yarn install --verbose; do
+ until yarn install; do
((attempts++))
if [[ $attempts > 2 ]]
then