aboutsummaryrefslogtreecommitdiffstats
path: root/main/zsh/zsh.post-upgrade
blob: 1b42f8258143c2c79858ffb9cadf1e25b21b5ed8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh

add-shell '/bin/zsh'

ver_new="$1"
ver_old="$2"

if [ "$(apk version -t "$ver_old" "5.2-r2")" = "<" ]; then
	cat <<-EOF
	*
	* Some modules has been moved into subpackages:
	*   zsh-calendar  calendar function system
	*   zsh-vcs       version control information (vcs_info)
	*   zsh-zftp      zftp function system
	*
	EOF
fi

exit 0