From b0e0f2d095c2831c60ec2ca98eab5665b1b46442 Mon Sep 17 00:00:00 2001 From: cbrand Date: Sat, 15 Apr 2023 01:18:14 -0700 Subject: [PATCH] Update 'capture.ps1' --- capture.ps1 | 1 + 1 file changed, 1 insertion(+) diff --git a/capture.ps1 b/capture.ps1 index b5af527..7b437cb 100644 --- a/capture.ps1 +++ b/capture.ps1 @@ -26,6 +26,7 @@ foreach ($file in $fileList) { $targetParent = Split-Path -Path $targetCopy -Parent if (-not (Test-Path -Path $targetParent)) { New-Item -ItemType Directory -Path $targetParent -Force | Out-Null + Write-Host "Copy-Item -Path '$($file.FullName)' -Destination '$($targetParent)'" Copy-Item -Path $file.FullName -Destination $targetParent } }