add proper RID detection based on PlatformAbstractions

This commit is contained in:
Andrew Stanton-Nurse 2015-12-18 16:39:43 -08:00
parent 2d4fe4bc10
commit f4df12f2e2
25 changed files with 293 additions and 175 deletions

View file

@ -12,7 +12,7 @@ if [ -z "$RID" ]; then
if [ -n "$(sw_vers -productVersion | grep 10.10)" ]; then
export RID=osx.10.10-x64
elif [ -n "$(sw_vers -productVersion | grep 10.11)" ]; then
export RID=osx.10.10-x64
export RID=osx.10.11-x64
else
error "unknown OS X: $(sw_vers -productVersion)" 1>&2
fi
@ -34,4 +34,4 @@ fi
if [ -z "$RID" ]; then
exit 1
fi
fi