mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
Exiting on broken pipe is expected operation for the 'yes' program
This commit is contained in:
parent
abb2ac6d20
commit
bfb3f2f66d
1 changed files with 5 additions and 0 deletions
|
@ -8,5 +8,10 @@ set -o errexit
|
|||
set -o nounset
|
||||
set -o pipefail
|
||||
|
||||
# We enable pipefail above to satisfy servo-tidy, but disable it again here.
|
||||
# In the case of the 'yes' program,
|
||||
# exiting when the stdout pipe is broken is expected.
|
||||
set +o pipefail
|
||||
|
||||
cd $(dirname ${0})/../..
|
||||
yes | ./mach bootstrap-android
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue