blob: 61624d3d89ec499f68a0213ebd376f69259ed210 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
post_upgrade() {
post_install $1
}
post_install() {
echo "You must read and agree to the license stored in"
echo "/usr/share/licenses/fbx-sdk/LICENSE before using FBX SDK"
}
op=$1
shift
$op $*
|