Handle streams separately in tree_add_track()
[cmus.git] / scripts / uninstall
blob9c2c82fc8b1c9906ce6c16aa5bbb47762fa89287
1 #!/bin/sh
3 test -f "$INSTALL_LOG" || exit 0
5 sort "$INSTALL_LOG" | uniq | \
6 while read file
7 do
8 echo "RM $file"
9 rm -f "$file"
10 rmdir -p "`dirname $file`" 2>/dev/null
11 done
12 rm -f "$INSTALL_LOG"