Fix CentOS on the latest .Net Core.

The latest .Net Core renamed the RID of the 'centos' packages to 'rhel'.  Migrating our scripts to use this name.
This commit is contained in:
Eric Erhardt 2016-02-05 18:33:57 -06:00
parent 0863e02b52
commit 1f8c139cec

View file

@ -16,7 +16,7 @@ if [ "$OSNAME" == "osx" ]; then
elif [ "$OSNAME" == "ubuntu" ]; then
RID=ubuntu.14.04-x64
elif [ "$OSNAME" == "centos" ]; then
RID=centos.7.1-x64
RID=rhel.7-x64
else
echo "Unknown OS: $OSNAME" 1>&2
exit 1