blob: 5f41e2604c80a541ea96c13612a770971069a25c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
post_install() {
echo "=========================================================================="
echo " OpenCode Dynamic Context Pruning Plugin Installed"
echo "=========================================================================="
echo ""
echo "To enable this plugin, add it to your opencode configuration file"
echo "(e.g., ~/.config/opencode/opencode.json):"
echo ""
echo " {"
echo " \"plugin\": [\"file:///usr/lib/opencode/plugins/opencode-dynamic-context-pruning\"]"
echo " }"
echo ""
echo "=========================================================================="
}
post_upgrade() {
post_install
}
|