blob: 3bb111c6f584eb90a5275db1259b4e7785a6297c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
post_install() {
/usr/share/windsurf-features/patch.py windsurf-features patch
}
pre_upgrade() {
/usr/share/windsurf-features/patch.py windsurf-features restore
}
post_upgrade() {
/usr/share/windsurf-features/patch.py windsurf-features patch
}
pre_remove() {
/usr/share/windsurf-features/patch.py windsurf-features restore
/usr/bin/rm -f /usr/share/windsurf-features/cache.json
}
|