summarylogtreecommitdiffstats
path: root/elvish.install
blob: 1ef6c33a1f46b25c32a5ae403985f63bc7f747de (plain)
1
2
3
4
5
6
7
8
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
}