9 lines
88 B
Bash
9 lines
88 B
Bash
#!/bin/sh
|
|
|
|
case "$2" in
|
|
DEINSTALL)
|
|
rm -f %%PREFIX%%/bin/netbeans3
|
|
;;
|
|
esac
|
|
|
|
exit 0
|