mirror of
https://github.com/Snigdha-OS/snigdhaos-pkgbuilds.git
synced 2025-09-21 03:55:02 +02:00

Some checks are pending
Check Conventional Commit / check-commit-message (push) Waiting to run
12 lines
199 B
Plaintext
12 lines
199 B
Plaintext
post_install() {
|
|
grep -qe '^/usr/bin/pwsh$' etc/shells || echo '/usr/bin/pwsh' >> etc/shells
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install
|
|
}
|
|
|
|
pre_remove() {
|
|
sed -ri '\|^/usr/bin/pwsh$|d' etc/shells
|
|
}
|