From 1bd0d76c2e13a94a8d93c30bb51096e54d77bbf1 Mon Sep 17 00:00:00 2001 From: Kentaro Hayashi Date: Wed, 6 Mar 2024 15:36:25 +0900 Subject: [PATCH] Suppress show download progress (#629) msi: suppress showing download progress It is meaningless to show redundant progress like this: Progress: Downloading git.install 2.44.0... % Progress: Downloading git.install 2.44.0... % Progress: Downloading git.install 2.44.0... % Progress: Downloading git.install 2.44.0... % Progress: Downloading git.install 2.44.0... % Progress: Downloading git.install 2.44.0... % Progress: Downloading git.install 2.44.0... % Progress: Downloading git.install 2.44.0... % Progress: Downloading git.install 2.44.0... % See https://docs.chocolatey.org/en-us/configuration#general-1 about features. --- fluent-package/msi/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fluent-package/msi/Dockerfile b/fluent-package/msi/Dockerfile index 91e560d83..cf8c258e8 100644 --- a/fluent-package/msi/Dockerfile +++ b/fluent-package/msi/Dockerfile @@ -27,7 +27,8 @@ RUN @"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -I # Install toolchain RUN \ - choco install -y git wixtoolset 7zip & \ + choco feature disable --name=showDownloadProgress && \ + choco install -y git wixtoolset 7zip && \ choco install -y cmake --installargs 'ADD_CMAKE_TO_PATH=System' && \ choco install -y msys2 --params /NoUpdate --version=20230718.0.0 && \ choco install ruby -y --version=3.1.3.1 && \