From 46415dd6cb1599d49ac3462849b7d629b68df6be Mon Sep 17 00:00:00 2001 From: Jan Egil Ring Date: Sat, 27 Jan 2024 08:25:30 +0100 Subject: [PATCH] Fix variable assignment in Azure Pipelines YAML Signed-off-by: Jan Egil Ring --- azure-pipelines.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 92077c1d42..a0f1d012eb 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -68,8 +68,8 @@ stages: azurePowerShellVersion: 'LatestVersion' Inline: | Write-Host "Deploying to $(ResourceGroupName)" - $githubAccount = $(githubAccount) - $githubBranch = $(githubBranch) + $githubAccount = "$(githubAccount)" + $githubBranch = "$(githubBranch)" if ($githubAccount -ne "microsoft") { Write-Host "Checking out $githubAccount/$githubBranch" git remote add upstream git@github.com:$($githubAccount)/azure_arc.git