summarylogtreecommitdiffstats
path: root/weechat-matrix-git.install
diff options
context:
space:
mode:
Diffstat (limited to 'weechat-matrix-git.install')
-rw-r--r--weechat-matrix-git.install27
1 files changed, 9 insertions, 18 deletions
diff --git a/weechat-matrix-git.install b/weechat-matrix-git.install
index 61d5d3e69b33..40d06439a267 100644
--- a/weechat-matrix-git.install
+++ b/weechat-matrix-git.install
@@ -1,23 +1,14 @@
-_install_update_msg() {
- echo "In order to use this plugin after installation, you'll need to run the following command as the user running weechat:"
- echo ""
- echo " $ ln -s /usr/share/weechat/python/weechat-matrix.py -t ~/.weechat/python/"
- echo ""
- echo "If you want the script to be loaded on start-up, you'll also need to symlink it into the autoload folder:"
- echo ""
- echo " $ ln -s /usr/share/weechat/python/weechat-matrix.py -t ~/.weechat/python/autoload/"
- echo ""
- echo "The location of the script has changed in April 2020, remove your old symlinks and follow the instructions above:"
- echo ""
- echo " $ rm ~/.weechat/python/{matrix,matrix.py}"
- echo " $ rm ~/.weechat/python/autoload/matrix.py"
- echo ""
-}
-
post_install() {
- _install_update_msg
+ echo "To load this script, execute the following command in WeeChat:"
+ echo "/script load weechat-matrix.py"
+ echo "To load it automatically during WeeChat startup, use:"
+ echo "mkdir -p ~/.weechat/python/autoload"
+ echo "ln -s /usr/share/weechat/python/weechat-matrix.py -t ~/.weechat/python/autoload"
}
post_upgrade() {
- _install_update_msg
+ if [ "$(vercmp "$2" 0.2.0-2)" -lt 0 ]
+ then
+ post_install
+ fi
}