summarylogtreecommitdiffstats
path: root/elvish.install
blob: 41414644e72c9dc34ce33d00bb0e886d876da35c (plain)
1
2
3
4
5
6
7
8
9
post_install() {
  grep -qe '^/usr/bin/elvish$' etc/shells || echo '/usr/bin/elvish' >> etc/shells
}

pre_remove() {
  sed -ri '\|^/usr/bin/elvish$|d' etc/shells
}

# vim:set ts=2 sw=2 et: