Subversion Repositories Games.Descent

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 pmbaty 1
#!/bin/sh
2
 
3
if [ ! -f "./install_manifest.txt" ]; then
4
    echo "ERROR: This needs to be run from your CMake build directory after installing." 1>&2
5
    exit 1
6
fi
7
 
8
xargs rm -vf < install_manifest.txt
9
exit 0
10