Explicitly install 'which' on CentOS

which isn't on CentOS by default and is needed by the dotnet install scripts
This commit is contained in:
Keith Mosher 2016-08-18 23:23:27 -07:00
parent b777d9ef2b
commit b60160977a

View file

@ -688,7 +688,7 @@ function Start-PSBootstrap {
sudo apt-get install -y -qq $Deps
} elseif ($IsCentOS) {
# Build tools
$Deps += "curl", "gcc-c++", "cmake", "make"
$Deps += "which", "curl", "gcc-c++", "cmake", "make"
# .NET Core required runtime libraries
$Deps += "libicu", "libunwind"