From 9f6531b547f12e02aa06198323466865f3868c17 Mon Sep 17 00:00:00 2001 From: Ryan Brandenburg Date: Tue, 17 Apr 2018 12:26:08 -0700 Subject: [PATCH] Fix script target --- scripts/UpdateDependenciesCoreFx.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/UpdateDependenciesCoreFx.ps1 b/scripts/UpdateDependenciesCoreFx.ps1 index 1256092da2..28db0aa6ec 100644 --- a/scripts/UpdateDependenciesCoreFx.ps1 +++ b/scripts/UpdateDependenciesCoreFx.ps1 @@ -103,7 +103,7 @@ Write-Host "Loading deps from $depsPath" [xml] $dependencies = LoadXml $depsPath $remote = "origin" -$baseBranch = "dev" +$baseBranch = "release/2.1" $currentBranch = Invoke-Block { & git rev-parse --abbrev-ref HEAD } $destinationBranch = "rybrande/UpgradeDepsTest"