Skip to content

Commit 1bd0d76

Browse files
authored
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.
1 parent d49f03f commit 1bd0d76

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

fluent-package/msi/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ RUN @"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -I
2727

2828
# Install toolchain
2929
RUN \
30-
choco install -y git wixtoolset 7zip & \
30+
choco feature disable --name=showDownloadProgress && \
31+
choco install -y git wixtoolset 7zip && \
3132
choco install -y cmake --installargs 'ADD_CMAKE_TO_PATH=System' && \
3233
choco install -y msys2 --params /NoUpdate --version=20230718.0.0 && \
3334
choco install ruby -y --version=3.1.3.1 && \

0 commit comments

Comments
 (0)