blob: f64f2e84b5c65209d82c9dea969b7106ceec66a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# ma35d1-nuwriter-git.install
info() {
echo -e "MA35D1 NuWriter"
}
post_install() {
info
}
post_upgrade() {
echo "deleting the ma35d1-nuwriter bottle..."
find /home -maxdepth 5 -name "ma35d1-nuwriter" -exec rm -rf {} \;
info
}
pre_remove() {
echo "deleting the ma35d1-nuwriter bottle..."
find /home -maxdepth 5 -name "ma35d1-nuwriter" -exec rm -rf {} \;
}
|