From f1c406a61ac2462cb7e597c1d619be062a68ec92 Mon Sep 17 00:00:00 2001 From: cbrand Date: Sat, 15 Apr 2023 01:22:57 -0700 Subject: [PATCH] Update 'capture.ps1' --- capture.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/capture.ps1 b/capture.ps1 index 7b437cb..af187e5 100644 --- a/capture.ps1 +++ b/capture.ps1 @@ -26,9 +26,9 @@ 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 } + Write-Host "Copy-Item -Path '$($file.FullName)' -Destination '$($targetParent)'" + Copy-Item -Path $file.FullName -Destination $targetParent } }