From 70fdd7b1cf0c4e7458d3a748debc92b848456580 Mon Sep 17 00:00:00 2001 From: Jan Egil Ring Date: Sat, 27 Jan 2024 08:34:50 +0100 Subject: [PATCH] Fix git remote URL in azure-pipelines.yml Signed-off-by: Jan Egil Ring --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index b3a274301c..029e772fd8 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -72,7 +72,7 @@ stages: $githubBranch = "$(githubBranch)" if ($githubAccount -ne "microsoft") { Write-Host "Checking out $githubAccount/$githubBranch" - git remote add upstream https://github.com$($githubAccount)/azure_arc.git + git remote add upstream https://github.com/$($githubAccount)/azure_arc.git git fetch upstream git checkout -b $githubBranch upstream/$githubBranch }