uninstall.sh 207 B

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