From d9dc19597189a3f9c6fd38d5df8e2728e6bb31c4 Mon Sep 17 00:00:00 2001 From: Azure SDK Bot <53356347+azure-sdk@users.noreply.github.com> Date: Tue, 21 Oct 2025 14:23:17 -0700 Subject: [PATCH] Remove extraneous unconditional bicep invocation (#6799) Fails if you don't have `bicep` installed but do have `az bicep` and was unnecessary since the check below it did it anyway. Co-authored-by: Heath Stewart --- eng/common/TestResources/TestResources-Helpers.ps1 | 2 -- 1 file changed, 2 deletions(-) diff --git a/eng/common/TestResources/TestResources-Helpers.ps1 b/eng/common/TestResources/TestResources-Helpers.ps1 index ce16b7767..66e054508 100644 --- a/eng/common/TestResources/TestResources-Helpers.ps1 +++ b/eng/common/TestResources/TestResources-Helpers.ps1 @@ -185,8 +185,6 @@ function LintBicepFile([string] $path) { } # Work around lack of config file override: https://github.com/Azure/bicep/issues/5013 - $output = bicep lint $path 2>&1 - if ($useBicepCli) { $output = bicep lint $path 2>&1 } else {