ProxSpace/msys2/var/lib/pacman/local/dash-0.5.12-1/install
2023-09-22 00:10:50 +02:00

14 lines
305 B
Plaintext

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