This commit is contained in:
Marvin Buss 2021-02-05 15:12:21 +01:00
Родитель be8fe76f42
Коммит 9a19fd919d
1 изменённых файлов: 2 добавлений и 4 удалений

Просмотреть файл

@ -69,7 +69,7 @@ foreach ($config in $configs) {
# Set Content of Parameter File
Write-Host "Setting Content of Parameter File"
$parameterFile | ConvertTo-Json | Set-Content -Path $config.filePath
$parameterFile | ConvertTo-Json -Depth 100 | Set-Content -Path $config.filePath
}
elseif (($config.fileType.ToLower() -eq "yaml") -or ($config.fileType.ToLower() -eq "yml")) {
# Load YAML Deployment File
@ -96,6 +96,4 @@ foreach ($config in $configs) {
Write-Error "File Type not Supported"
throw "File Type not Supported"
}
}
}