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:
parent
0863e02b52
commit
1f8c139cec
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue