diff options
author | James E. Blair <jim@acmegating.com> | 2021-10-21 13:59:26 -0700 |
---|---|---|
committer | James E. Blair <jim@acmegating.com> | 2021-10-21 13:59:26 -0700 |
commit | 01ffc3a6c11154fac814bac759e40adf488beba3 (patch) | |
tree | d33aee5edb4db2614ef7a0c871bea5ea6abdbb5d /tools/pip.sh | |
parent | 220534c0f735b6a8d57df4bd89adc5e0561a69a0 (diff) | |
download | zuul-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/pip.sh')
-rwxr-xr-x | tools/pip.sh | 2 |
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 |