blob: 87f0af840e49579f2cc51201ebb9a0f28493ffd8 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
 | # Run this after installing
post_install() {
  cat <<EOM
  == Note ==
  To enable plugins, symlink them from /usr/local/lib/smolbote to the location
  set in plugins.path (defaults to ~/.config/smolbote/plugins.d):
  ln -s /usr/local/lib/smolbote/libPlugin.so ~/.config/smolbote/plugins.d
EOM
}
# Run this after updating
post_upgrade() {
  post_install
}
 |