Remove debugging messages from CI pipeline

This commit is contained in:
jhoneill
2019-12-09 00:45:34 +00:00
parent ed41c20f63
commit ce8a070673

View File

@@ -147,7 +147,7 @@ try {
Get-ChildItem -Path $ModulePath | Remove-Item -Force -Recurse Get-ChildItem -Path $ModulePath | Remove-Item -Force -Recurse
} }
'Copying files to: "{0}"' -f $ModulePath 'Copying files to: "{0}"' -f $ModulePath
$outputFile = $psdpath | Copy-Item -Destination $ModulePath -PassThru -Verbose $outputFile = $psdpath | Copy-Item -Destination $ModulePath -PassThru
$outputFile.fullname $outputFile.fullname
foreach ($file in $Settings.FileList) { foreach ($file in $Settings.FileList) {
if ($file -like '.\*') { if ($file -like '.\*') {
@@ -157,7 +157,7 @@ try {
} }
} }
else {$dest = $ModulePath } else {$dest = $ModulePath }
Copy-Item -Path $file -Destination $dest -Force -Recurse -Verbose Copy-Item -Path $file -Destination $dest -Force -Recurse
} }
if ((Test-Path -PathType Container "mdHelp") -and -not $SkipHelp) { if ((Test-Path -PathType Container "mdHelp") -and -not $SkipHelp) {