mirror of
https://github.com/archlinux/aur.git
synced 2026-02-07 12:41:55 +01:00
18 lines
604 B
Text
18 lines
604 B
Text
post_install() {
|
|
echo "=========================================================================="
|
|
echo " Opencode PTY Plugin Installed"
|
|
echo "=========================================================================="
|
|
echo ""
|
|
echo "To enable this plugin, add it to your opencode configuration file"
|
|
echo "(e.g., ~/.config/opencode/config.json):"
|
|
echo ""
|
|
echo " {"
|
|
echo " \"plugin\": [\"file:///usr/lib/opencode/plugins/opencode-pty\"]"
|
|
echo " }"
|
|
echo ""
|
|
echo "=========================================================================="
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install
|
|
}
|