PSD
PSD copied to clipboard
Small Regression in PSDUtility.psm1 (Copy-PSDFolder)
Copy-PSDFolder in PSDUtility.psm1 returns the output of
& xcopy $s $d /s /e /v /d /y /i
The output breaks a check with Test-Path in PSDStart.ps1 (Line 563) causing the task sequence to fail
In the old version the output of this was piped to Out-Null. Changing the line back to
& xcopy $s $d /s /e /v /d /y /i | Out-Null
seems to fix the issue.