View Single Post
Timothy,

It appears that the OF bundle format changed in the last couple of days. I tweaked the script by replacing these lines:

Code:
CURRENT_BUILD=`fgrep -A1 OZBuildRevision "$INSTALLED_APP/Contents/Info.plist" |\
tr -d '\012'|\
sed 's#.*<string>##g; s#</string>##g'`
with the following code that uses the Revision reported in the About box, which seems to match the web site:

Code:
CURRENT_BUILD=`egrep '^Revision' "$INSTALLED_APP/Contents/Resources/Versions.txt" |\
tr -d '\012'|\
sed 's#Revision: ##g'`
Disclaimer: This code is primarily for Timothy's benefit. Others may use it, but if you are shy about the shell I'd suggest just waiting for Timothy to update his script.
__________________
Cheers,

Curt

Last edited by curt.clifton; 2007-08-03 at 02:01 AM.. Reason: Fixed bug