blob: 22684178ef941be2cd7637856aae3d6e8f6d069d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
info() {
echo -e "Dev Cube 是博流提供的芯片集成开发工具"
}
post_install() {
info
}
post_upgrade() {
echo "deleting the bouffalolab-devcude bottle..."
find /home -maxdepth 4 -name "bouffalolab-devcude" -exec rm -rf {} \;
info
}
pre_remove() {
echo "deleting the bouffalolab-devcude bottle..."
find /home -maxdepth 4 -name "bouffalolab-devcude" -exec rm -rf {} \;
}
|