summaryrefslogtreecommitdiff
path: root/data/mobileterminal/_metadata/postinst
blob: 93c5556ce1726e19bf6768330c7c9eab14d023b6 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash
shopt -s extglob

if [[ $# -gt 1 && $1 == configure ]]; then
    if [[ $2 == 316s-5 ]]; then
        rm -f ~mobile/Library/Preferences/com.googlecode.mobileterminal.plist
    fi
fi

exit 0