blob: cd0dfe2b7209de7f3d4c244caa84f0d785170610 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
post_upgrade() {
post_install $1
}
post_install() {
echo ">>> You have to read and accept the license agreement under"
echo ">>> /usr/share/licenses/yed/license.html before using yEd."
}
op=$1
shift
$op $*
|