diff --git a/azure-pipelines/artifacts/deployables.ps1 b/azure-pipelines/artifacts/deployables.ps1 index 94c48cd..1681990 100644 --- a/azure-pipelines/artifacts/deployables.ps1 +++ b/azure-pipelines/artifacts/deployables.ps1 @@ -6,8 +6,12 @@ if (!$BuildConfiguration) { $PackagesRoot = "$RepoRoot/bin/Packages/$BuildConfiguration" +Write-Host "PackagesRoot = $PackagesRoot" + if (!(Test-Path $PackagesRoot)) { return } +Write-Host "Found folder, looking for files..." + @{ "$PackagesRoot" = (Get-ChildItem $PackagesRoot -Recurse) }