mirror of
https://github.com/archlinux/aur.git
synced 2026-02-09 06:38:44 +01:00
19 lines
687 B
Text
19 lines
687 B
Text
post_install() {
|
|
echo "=========================================================================="
|
|
echo " Opencode Antigravity Auth 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-antigravity-auth\"]"
|
|
echo " }"
|
|
echo ""
|
|
echo "Then run 'opencode auth login' to authenticate."
|
|
echo "=========================================================================="
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install
|
|
}
|