summarylogtreecommitdiffstats
path: root/aliyundrive-wine.install
blob: 4f3d24a39e80b89ab8ea458c1410e973638cb332 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# aliyundrive-wine.post_install

info() {
    echo -e "Wine 阿里云盘"
    echo -e "请选择 C:\Program Files 进行安装"
    echo -e "Please select C:\ Program Files to install"
}
post_install() {
    info
}
post_upgrade() {
    info
    echo "deleting the aliyundrive bottle..."
    find /home -maxdepth 2 -name ".aliyundrive" -exec rm -rf {} \;
}
pre_remove() {
    echo "deleting the aliyundrive bottle..."
    find /home -maxdepth 2 -name ".aliyundrive" -exec rm -rf {} \;
}