File: uninstall.sh

package info (click to toggle)
libphysfs 3.2.0-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 1,300 kB
  • sloc: ansic: 18,547; perl: 210; sh: 166; cpp: 152; makefile: 3
file content (10 lines) | stat: -rwxr-xr-x 207 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

if [ ! -f "./install_manifest.txt" ]; then
    echo "ERROR: This needs to be run from your CMake build directory after installing." 1>&2
    exit 1
fi

xargs rm -vf < install_manifest.txt
exit 0