Subversion Repositories Games.Descent

Rev

Blame | Last modification | View Log | Download | RSS feed

  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.  
  11.