Skip to content

Commit

Permalink
fix ubuntu_16
Browse files Browse the repository at this point in the history
  • Loading branch information
ramarag committed Mar 14, 2017
1 parent fcfd71d commit 962669d
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,11 @@ static GivenThatWeWantToCacheAProjectWithDependencies()
// microsoft.netcore.coredistools only has assets for osx.10.10
_runtimeRid = "osx.10.10-x64";
}
else if (rid.Contains("ubuntu"))
{
// microsoft.netcore.coredistools only has assets for ubuntu.14.04-x64
_runtimeRid = "ubuntu.14.04-x64";
}
else
{
_runtimeRid = rid;
Expand Down

0 comments on commit 962669d

Please sign in to comment.