Sha256: 261dc16fbda47f3186a14297fd1a9cffc9e42f815e2c617f95f80805d2e09087
Contents?: true
Size: 360 Bytes
Versions: 52
Compression:
Stored size: 360 Bytes
Contents
#!/bin/bash for application in "Growl" "GrowlHelperApp"; do version=`osascript -e "get version of application \"$application\"" 2>/dev/null` if [ $? -eq 0 ]; then break; fi done case "$version" in "") echo "Growl not found: please install Growl and try again" exit 1 ;; 1.[012]*) $0-1.1.5 "$@" ;; *) $0-1.3 "$@" ;; esac
Version data entries
52 entries across 52 versions & 5 rubygems