aboutsummaryrefslogtreecommitdiff
path: root/scripts/cmake
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-11-02 19:08:53 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2017-11-03 15:02:52 -0700
commitdc7db2571399a97d6dacc4f12f81ee1fa204987d (patch)
tree9f60b16e95322766682d6123fb918b49723b9345 /scripts/cmake
parentebb52b8cb19e049cf998bd6742cb9f6a07e947cd (diff)
downloadvcpkg-dc7db2571399a97d6dacc4f12f81ee1fa204987d.tar.gz
vcpkg-dc7db2571399a97d6dacc4f12f81ee1fa204987d.zip
[downloads] Don't show progress by default
Diffstat (limited to 'scripts/cmake')
-rw-r--r--scripts/cmake/vcpkg_download_distfile.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/cmake/vcpkg_download_distfile.cmake b/scripts/cmake/vcpkg_download_distfile.cmake
index ff32f1aed..0141e9811 100644
--- a/scripts/cmake/vcpkg_download_distfile.cmake
+++ b/scripts/cmake/vcpkg_download_distfile.cmake
@@ -70,7 +70,7 @@ function(vcpkg_download_distfile VAR)
# Tries to download the file.
foreach(url IN LISTS vcpkg_download_distfile_URLS)
message(STATUS "Downloading ${url}...")
- file(DOWNLOAD ${url} "${download_file_path_part}" STATUS download_status SHOW_PROGRESS)
+ file(DOWNLOAD ${url} "${download_file_path_part}" STATUS download_status)
list(GET download_status 0 status_code)
if (NOT "${status_code}" STREQUAL "0")
message(STATUS "Downloading ${url}... Failed. Status: ${download_status}")