blob: fc9060703f48f9c103052acb51889f8ec3f8c5a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
post_install() {
cat <<EOF
Because of the increasing popularity of youtube-viewer, the
developer's API key is occasionally exceeding its usage limit. Users
who are able are requested to create their own free API keys to reduce
the load. Please refer to
/usr/share/doc/youtube-viewer/README.md
for instructions.
EOF
}
post_upgrade() {
post_install
}
|