Optification for Harmattan (Store upload)
[gpodder.git] / debian / prerm
blob02a1ca811a4f534271210d5f7cd591916530d028
1 #!/bin/sh
3 # Optification - remove symlinks created by postinst
5 SYMLINKS=/opt/gpodder/optification.symlinks
7 if [ -f $SYMLINKS ]; then
8 for file in $(cat $SYMLINKS); do
9 if [ -L $file ]; then
10 echo "Removing symlink: $file"
11 rm -f $file
13 done
16 echo "Removing: $SYMLINKS"
17 rm -f $SYMLINKS