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

post_upgrade() {
  post_install
}

pre_remove() {
  sed -i -r '/^(\/usr)?\/bin\/nu$/d' etc/shells
}