Files
MSYS2-packages/tcsh/tcsh.install
2014-10-22 10:36:51 +04:00

14 lines
305 B
Plaintext

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