You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
- #!/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
-
|