Fix condition on message about missing runtime packages

This commit is contained in:
Wes Haggard 2016-04-08 21:44:36 -07:00
parent f5466be4a7
commit 0b77c8730c

View file

@ -421,7 +421,9 @@ namespace Microsoft.DotNet.Cli.Build
}
}
Console.WriteLine($"Build version {buildVersion} is missing some runtime packages so not pushing this drop.");
if (missingRuntime)
Console.WriteLine($"Build version {buildVersion} is missing some runtime packages so not pushing this drop.");
return !missingRuntime;
}