aports/community/skim/skim.post-upgrade
2022-04-01 16:10:54 +02:00

18 lines
486 B
Bash

#!/bin/sh
ver_old=$2
if [ "$(apk version -t "$ver_old" '0.9.4-r1')" = '<' ]; then
cat >&2 <<-EOF
*
* skim subpackages for bash, fish, and zsh support have been restructured:
* *-completion and *-keybinds subpackages have been replaced by *-plugin
* subpackages. Both completion and key-bindings files are now located in
* /usr/share/{bash,zsh}/plugins/skim/ directories, fish key-bindings in
* /usr/share/fish/vendor_functions.d/skim-key-bindings.fish file.
*
EOF
fi
exit 0