mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
12 lines
193 B
Plaintext
12 lines
193 B
Plaintext
post_install() {
|
|
grep -qe '^/usr/bin/fish$' etc/shells || echo '/usr/bin/fish' >> etc/shells
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install
|
|
}
|
|
|
|
pre_remove() {
|
|
sed -ri '\|^/usr/bin/fish$|d' etc/shells
|
|
}
|