Merge pull request #4453 from abbradar/patch-1

Use "pipefail" in setup.sh

+1 -4
+1 -4
pkgs/stdenv/generic/setup.sh
··· 1 1 set -e 2 + set -o pipefail 2 3 3 4 : ${outputs:=out} 4 5 ··· 568 569 569 570 for i in $patches; do 570 571 header "applying patch $i" 3 571 - if [ ! -r "$i" ]; then 572 - echo "file $i does not exist or not readable" 573 - exit 1 574 - fi 575 572 local uncompress=cat 576 573 case "$i" in 577 574 *.gz)