summarylogtreecommitdiffstats
path: root/stc-isp-bin.install
blob: 32dad0f32fec9b84f6001c125d0864bd5e2fd3ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
info() {
    echo -e "STC-ISP 下载编程烧录软件"
}
post_install() {
    info
}
post_upgrade() {
    echo "deleting the stc-isp bottle..."
    find /home -maxdepth 2 -name ".stc-isp" -exec rm -rf {} \;
    info
}
pre_remove() {
    echo "deleting the stc-isp bottle..."
    find /home -maxdepth 2 -name ".stc-isp" -exec rm -rf {} \;
}