Skip to content

Commit

Permalink
Loop over files
Browse files Browse the repository at this point in the history
  • Loading branch information
james-garriss committed Jun 24, 2024
1 parent e230993 commit 38545dd
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion utils/DeployUtils.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,10 @@ function SignScubaGearModule {
# the hashes of the actual files in order to validate their authenticity.
# Signing tool says it was successful, but the test says it was not.
Write-Host ">> Testing the catalog"
$TestResult = Test-FileCatalog -CatalogFilePath $CatalogFilePath -Detailed
# $TestResult = Test-FileCatalog -CatalogFilePath $CatalogFilePath -Detailed
ForEach ($File in $FileList) {
Write-Host $File
}
if ($TestResult -eq 'Valid') {
Write-Host ">> Signing the module was successful."
return True
Expand Down

0 comments on commit 38545dd

Please sign in to comment.