MSYS2-packages/fish/fish.install
2015-05-07 12:45:38 +09:00

12 lines
190 B
Plaintext

post_install() {
grep -q '/usr/bin/fish' etc/shells || echo '/usr/bin/fish' >> etc/shells
}
post_upgrade() {
post_install
}
pre_remove() {
sed -i '/^\/usr\/bin\/fish/d' etc/shells
}