From 80fb11b077fe043c2531bbcee1ebaea5a2e130b8 Mon Sep 17 00:00:00 2001 From: Ricardo Arenas Date: Tue, 27 Aug 2019 12:37:06 -0700 Subject: [PATCH] Swap incorrect variable values (#3783) Missed this during refactoring for https://github.com/dotnet/arcade/issues/3607. For validation I was overriding the values to go to a test feed, so didn't catch this in the original PR. The values for these variables are inverted. --- eng/common/templates/post-build/common-variables.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eng/common/templates/post-build/common-variables.yml b/eng/common/templates/post-build/common-variables.yml index b00d85d8cee..7b3fdb13616 100644 --- a/eng/common/templates/post-build/common-variables.yml +++ b/eng/common/templates/post-build/common-variables.yml @@ -49,6 +49,6 @@ variables: # Default locations for Installers and checksums - name: ChecksumsBlobFeedUrl - value: https://dotnetcli.blob.core.windows.net/dotnet/index.json - - name: InstallersBlobFeedUrl value: https://dotnetclichecksums.blob.core.windows.net/dotnet/index.json + - name: InstallersBlobFeedUrl + value: https://dotnetcli.blob.core.windows.net/dotnet/index.json