diff options
| author | Billy O'Neal <bion@microsoft.com> | 2021-07-27 15:42:43 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-27 15:42:43 -0700 |
| commit | 9f8a74d7c2cc41664d76ea30b49063554acb03b8 (patch) | |
| tree | f0ca5287592d0e5e02b2468335a7a8b49591074d /scripts | |
| parent | dc35791a568aacf855355bcfcdff978ec22e69d3 (diff) | |
| download | vcpkg-9f8a74d7c2cc41664d76ea30b49063554acb03b8.tar.gz vcpkg-9f8a74d7c2cc41664d76ea30b49063554acb03b8.zip | |
Don't emit stderr on successful bootstrap. (#19175)
Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/bootstrap.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index 1b71c810f..3f5bd85aa 100644 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -119,7 +119,7 @@ vcpkgDownloadFile() url=$1; downloadPath=$2 sha512=$3 vcpkgCheckRepoTool "curl" rm -rf "$downloadPath.part" - curl -L $url --tlsv1.2 --create-dirs --retry 3 --output "$downloadPath.part" || exit 1 + curl -L $url --tlsv1.2 --create-dirs --retry 3 --output "$downloadPath.part" --silent --show-error --fail || exit 1 vcpkgCheckEqualFileHash $url "$downloadPath.part" $sha512 mv "$downloadPath.part" "$downloadPath" |
