diff options
author | Jay Freeman <saurik@saurik.com> | 2008-09-01 00:34:18 +0000 |
---|---|---|
committer | Jay Freeman <saurik@saurik.com> | 2008-09-01 00:34:18 +0000 |
commit | 3eab1a228422e95ca4642cf087c42904972d3fd1 (patch) | |
tree | 4d62c71d9d3b207a977d69499dbef49c1e7979be /data/mobileterminal/_metadata | |
parent | ef20e82a0ffa50db0f94fa3db1709a1a45522aea (diff) |
Fixed MobileTerminal default color issue.
git-svn-id: http://svn.telesphoreo.org/trunk@461 514c082c-b64e-11dc-b46d-3d985efe055d
Diffstat (limited to 'data/mobileterminal/_metadata')
-rw-r--r-- | data/mobileterminal/_metadata/postinst | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/data/mobileterminal/_metadata/postinst b/data/mobileterminal/_metadata/postinst index c0b1fb066..93c5556ce 100644 --- a/data/mobileterminal/_metadata/postinst +++ b/data/mobileterminal/_metadata/postinst @@ -2,10 +2,7 @@ shopt -s extglob if [[ $# -gt 1 && $1 == configure ]]; then - ver=${2%%?(u)-*([0-9])} - rev=${2##*-} - - if [[ ${ver} -lt 286 || ${ver} -eq 286 && ${rev} -lt 6 ]]; then + if [[ $2 == 316s-5 ]]; then rm -f ~mobile/Library/Preferences/com.googlecode.mobileterminal.plist fi fi |