From 25ee09a29b6f56b0542622f13271c5578ac4fcfa Mon Sep 17 00:00:00 2001 From: Livar Date: Wed, 9 Nov 2016 16:44:35 -0800 Subject: [PATCH] I had a wrong condition before, where I forgot to reference a variable. Fixing that here. (#4665) --- build/compile/Microsoft.DotNet.Cli.LzmaArchive.targets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/compile/Microsoft.DotNet.Cli.LzmaArchive.targets b/build/compile/Microsoft.DotNet.Cli.LzmaArchive.targets index acb9e16c8..fe8ee5889 100644 --- a/build/compile/Microsoft.DotNet.Cli.LzmaArchive.targets +++ b/build/compile/Microsoft.DotNet.Cli.LzmaArchive.targets @@ -14,7 +14,7 @@ DependsOnTargets="SetupNuGetPackagesArchiveInputsOutputs; SetupAzureBlobInformation; GenerateNuGetPackagesArchive" - Condition=" 'UploadNuGetPackagesArchiveToAzure' == 'true' And '$(PUBLISH_TO_AZURE_BLOB)' != '' "> + Condition=" '$(UploadNuGetPackagesArchiveToAzure)' == 'true' And '$(PUBLISH_TO_AZURE_BLOB)' != '' ">