PSD icon indicating copy to clipboard operation
PSD copied to clipboard

Small Regression in PSDUtility.psm1 (Copy-PSDFolder)

Open ASlowTurtle opened this issue 4 years ago • 0 comments

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.

ASlowTurtle avatar Apr 06 '21 17:04 ASlowTurtle