blob: 060eb33da7c53b5104d85e9502633d8f8f292f04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
post_install() {
grep -qe '^/usr/bin/pwsh-preview$' etc/shells || echo '/usr/bin/pwsh-preview' >> etc/shells
}
post_upgrade() {
post_install
}
pre_remove() {
sed -ri '\|^/usr/bin/pwsh-preview$|d' etc/shells
}
|