aboutsummaryrefslogtreecommitdiffstats
path: root/community/fzf/fzf.post-upgrade
diff options
context:
space:
mode:
Diffstat (limited to 'community/fzf/fzf.post-upgrade')
-rw-r--r--community/fzf/fzf.post-upgrade17
1 files changed, 17 insertions, 0 deletions
diff --git a/community/fzf/fzf.post-upgrade b/community/fzf/fzf.post-upgrade
new file mode 100644
index 00000000000..bff4b940994
--- /dev/null
+++ b/community/fzf/fzf.post-upgrade
@@ -0,0 +1,17 @@
+#!/bin/sh
+
+ver_old=$2
+
+if [ "$(apk version -t "$ver_old" '0.29.0-r4')" = '<' ]; then
+ cat >&2 <<-EOF
+ *
+ * fzf subpackages for bash, fish, and zsh support have been restructured:
+ * fzf-<shell>-completion subpackages have been renamed to fzf-<shell>-plugin.
+ * Both completion and key-bindings files are now installed in
+ * /usr/share/{bash,zsh}/plugins/fzf/ directories, fish key-bindings in
+ * /usr/share/fish/vendor_functions.d/fzf-key-bindings.fish file.
+ *
+ EOF
+fi
+
+exit 0