blob: 5733ba5b5b4c78d9207f74093bba2780fbfad28a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# -*- sh -*-
post_install() {
cat <<__EOT__
» NB: The executable is called ‘ryelang’ because the
» name ‘rye’ was already taken by another package.
__EOT__
}
post_upgrade() {
post_install "$@"
}
# eof
|