Skip to content

Commit

Permalink
Suppress show download progress (fluent#629)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
kenhys authored Mar 6, 2024
1 parent d49f03f commit 1bd0d76
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion fluent-package/msi/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 && \
Expand Down

0 comments on commit 1bd0d76

Please sign in to comment.