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