We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37a4aee commit eeaf59fCopy full SHA for eeaf59f
Functions/Compress-FolderToTarGz.ps1
@@ -28,7 +28,7 @@ function Compress-FolderToTarGz {
28
$tarFull = Join-Path $parent $tarName
29
$gzFull = Join-Path $parent $gzName
30
31
- if ($PSCmdlet.ShouldProcess($TargetDir,\"Compress to $gzFull\")) {
+ if ($PSCmdlet.ShouldProcess($TargetDir, "Compress to $gzFull")) {
32
$excludeArgs = @()
33
foreach ($ex in $Exclude) { $excludeArgs += \"--exclude=$ex\" }
34
0 commit comments