This commit is contained in:
Brian Moore (Azure Resource Manager) 2021-07-09 09:04:45 -05:00
Родитель 1edb8e3241
Коммит 245fcda015
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -50,15 +50,15 @@ function deploy {
# if the bicep switch is set, and the templateFile arg was the default, swap .json for .bicep
$isBicep = ($bicep -or $TemplateFile.EndsWith('.bicep'))
if ($isBicep) {
$defaultTemplateFile = '\main.bicep'
$defaultTemplateFile = 'main.bicep'
}
else {
$defaultTemplateFile = '\azuredeploy.json'
$defaultTemplateFile = 'azuredeploy.json'
}
# if the template file isn't found, try another default
if (!(Test-Path "$ArtifactStagingDirectory\$TemplateFile")) {
$TemplateFile = $ArtifactStagingDirectory + $defaultTemplateFile
$TemplateFile = $defaultTemplateFile
}
# build the bicep file