mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-09-21 13:41:20 +02:00
18 lines
486 B
Bash
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
|