b498f61e68
git-svn-id: http://galileo.dmi.unict.it/svn/relational/trunk@92 014f5005-505e-4b48-8d0a-63407b615a7c
11 lines
101 B
Bash
11 lines
101 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
case $1 in
|
|
remove)
|
|
rm -rf /usr/share/python-support/relational/;;
|
|
esac
|
|
|
|
exit 0
|
|
|