blob: a84103dfe4e048d33dd1210a3e1799bba2ba7904 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
. /etc/profile.d/eclipse-clp.sh
post_install() {
cd $ECLIPSEDIR
echo -e "\n\n\n\n${JAVA_HOME}\n" | ./RUNME
}
post_upgrade() {
post_install $1
}
post_remove() {
return 0
}
op=$1
shift
$op $*
|