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

info() {
    echo -e "Wine LuatTools 是合宙的 Lua 调试工具"
}
post_install() {
    info
}
post_upgrade() {
    info
    echo "deleting the luatools bottle..."
    find /home -maxdepth 2 -name ".luatools" -exec rm -rf {} \;
}
pre_remove() {
    echo "deleting the luatools bottle..."
    find /home -maxdepth 2 -name ".luatools" -exec rm -rf {} \;
}