From 6e3b5f2662fe665accd6da0a953ce9c3c840e1c3 Mon Sep 17 00:00:00 2001 From: Jesper Fajers Date: Fri, 5 Jan 2024 12:06:55 +0000 Subject: [PATCH] Update --- src/functions/Invoke-AzOpsPush.ps1 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/functions/Invoke-AzOpsPush.ps1 b/src/functions/Invoke-AzOpsPush.ps1 index b94d4e3c..bf9fd4b9 100644 --- a/src/functions/Invoke-AzOpsPush.ps1 +++ b/src/functions/Invoke-AzOpsPush.ps1 @@ -362,10 +362,10 @@ # Handle Bicep templates if ($addition.EndsWith(".bicep")) { $transpiledTemplatePaths = ConvertFrom-AzOpsBicepTemplate -BicepTemplatePath $addition -ConvertedTemplate $AzOpsTranspiledTemplate -ConvertedParameter $AzOpsTranspiledParameter - if ($transpiledTemplatePaths.transpiledTemplateNew -eq $true) { + if ($true -eq $transpiledTemplatePaths.transpiledTemplateNew) { $AzOpsTranspiledTemplate += $transpiledTemplatePaths.transpiledTemplatePath } - if ($transpiledTemplatePaths.transpiledParametersNew -eq $true) { + if ($true -eq $transpiledTemplatePaths.transpiledParametersNew) { $AzOpsTranspiledParameter += $transpiledTemplatePaths.transpiledParametersPath } $addition = $transpiledTemplatePaths.transpiledTemplatePath @@ -381,10 +381,10 @@ $resolvedArmFileAssociation = Resolve-ArmFileAssociation -ScopeObject $scopeObject -FilePath $addition -AzOpsMainTemplate $AzOpsMainTemplate -ConvertedTemplate $AzOpsTranspiledTemplate -ConvertedParameter $AzOpsTranspiledParameter foreach ($fileAssociation in $resolvedArmFileAssociation) { - if ($fileAssociation.transpiledTemplateNew -eq $true) { + if ($true -eq $fileAssociation.transpiledTemplateNew) { $AzOpsTranspiledTemplate += $fileAssociation.TemplateFilePath } - if ($fileAssociation.transpiledParametersNew -eq $true) { + if ($true -eq $fileAssociation.transpiledParametersNew) { $AzOpsTranspiledParameter += $fileAssociation.TemplateParameterFilePath } }