However, todays java web start did an upgrade to 1.0.8 and broke the video client - it just refused to start.
Problem is caused by an incorrect shell script test in ~/.Koala/plugins/ViEVO/ViEVO
if [ "$OSTYPE" -ne "darwin9.0" ]; then
should be
if [ "$OSTYPE" != "darwin9.0" ]; then
and all works fine. RT Ticket [vrvs.org #2615] has been raised with the developers.
No comments:
Post a Comment