blob: aeaacf13793de2c127e2211aa3058166f0b43c24 (
plain)
1
2
3
4
5
6
7
8
9
10
|
post_install() {
grep -qe '^/usr/bin/elvish$' etc/shells || echo "/usr/bin/elvish" >> etc/shells
grep -qe '^/bin/elvish$' etc/shells || echo "/bin/elvish" >> etc/shells
}
pre_remove() {
sed -ri -e '\|^/usr/bin/elvish$|d' -e '\|^/bin/elvish$|d' etc/shells
}
# vim:set ts=2 sw=2 et:
|