|
|
|
[
Permlink
| « Hide
]
Robin Shen [28/Aug/14 03:46 AM]
Thanks for the info. Unfortunately we are not able to test again Yosemite as it has not been released yet. Will come up with the fix once it is released.
The real issue here is that in agent.sh, the $OS_VER check is a string comparison of the full version string. If it compared the major/minor version numbers separately then it would work fine.
# Resolve the architecture if [ "$DIST_OS" = "macosx" ] then OS_VER=`sw_vers | grep 'ProductVersion:' | grep -o '[0-9]*\.[0-9]*\.[0-9]*|[0-9]*\.[0-9]*'` DIST_ARCH="universal" if [[ "$OS_VER" < "10.5.0" ]] then DIST_BITS="32" else ... Thanks for the info. Latest version of JSW will get this fixed. And we will do an upgrade.
|