Chromium Code Reviews| Index: net/data/ssl/scripts/generate-aia-certs.sh |
| diff --git a/net/data/ssl/scripts/generate-aia-certs.sh b/net/data/ssl/scripts/generate-aia-certs.sh |
| index 76b86cf5418df067cc461940c4ad2c52bdd498f1..706d386eeaa3619fccc23335f69650005ad1a9af 100755 |
| --- a/net/data/ssl/scripts/generate-aia-certs.sh |
| +++ b/net/data/ssl/scripts/generate-aia-certs.sh |
| @@ -8,8 +8,7 @@ |
| # certificates that can be used to test fetching of an intermediate via AIA. |
| try() { |
| - echo "$@" |
| - "$@" || exit 1 |
| + "$@" || (e=$?; echo "$@" > /dev/stderr; exit $e) |
| } |
| try rm -rf out |