Skip to content
This repository has been archived by the owner on Feb 19, 2019. It is now read-only.

Commit

Permalink
Making the unzip process silent as there is no reason to display a pr…
Browse files Browse the repository at this point in the history
…ogress bar. My main purpose in doing this is for puppetized installations - I would not want this popping up on a developer machine when a new version is available as it would surprise them and they may unintentionally cancel the unzip and stop the chocolatey installation.
  • Loading branch information
TJ Biddle authored and ferventcoder committed Dec 5, 2012
1 parent 32884ea commit 41c87c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/helpers/functions/Get-ChocolateyUnzip.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ param(
$zipPackage = $shellApplication.NameSpace($fileFullPath)
$destinationFolder = $shellApplication.NameSpace($destination)
$zipPackageItems = $zipPackage.Items()
$destinationFolder.CopyHere($zipPackageItems,0x10)
$destinationFolder.CopyHere($zipPackageItems,0x14)

if ($packageName) {
$packagelibPath=$env:chocolateyPackageFolder
Expand Down

0 comments on commit 41c87c0

Please sign in to comment.