Skip to content

Commit

Permalink
testing gh workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
santisq committed Nov 9, 2022
1 parent 6a1cbbc commit 80a63d1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion PSCompression/PSCompression.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
RootModule = 'PSCompression.psm1'

# Version number of this module.
ModuleVersion = '1.0.0'
ModuleVersion = '1.0.2'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down
4 changes: 2 additions & 2 deletions PSCompression/private/functions.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ function GzipCoreReader {
$inStream = $File.OpenRead()
$gzip = [GZipStream]::new($inStream, [CompressionMode]::Decompress)

if($PSBoundParameters.ContainsKey('DestinationPath')) {
return $gzip.CopyTo($outFile)
if($PSBoundParameters.ContainsKey('OutStream')) {
return $gzip.CopyTo($OutStream)

}

Expand Down

0 comments on commit 80a63d1

Please sign in to comment.