We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 634c0bc commit f062354Copy full SHA for f062354
1 file changed
Modules/CIPPCore/Public/New-CIPPTemplateRun.ps1
@@ -28,7 +28,7 @@ function New-CIPPTemplateRun {
28
$MigrationTable = (Get-GitHubFileContents -FullName $TemplateSettings.templateRepo.value -Branch $TemplateSettings.templateRepoBranch.value -Path $MigrationTable.path).content | ConvertFrom-Json
29
}
30
foreach ($File in $Files) {
31
- if ($File.name -eq 'MigrationTable') { continue }
+ if ($File.name -eq 'MigrationTable' -or $file.name -eq 'ALLOWED COUNTRIES') { continue }
32
$ExistingTemplate = $ExistingTemplates | Where-Object { $_.displayName -eq $File.name } | Select-Object -First 1
33
$Template = (Get-GitHubFileContents -FullName $TemplateSettings.templateRepo.value -Branch $TemplateSettings.templateRepoBranch.value -Path $File.path).content | ConvertFrom-Json
34
if ($ExistingTemplate) {
0 commit comments