Skip to content

Latest commit

 

History

History
executable file
·
10 lines (7 loc) · 207 Bytes

uninstall.sh

File metadata and controls

executable file
·
10 lines (7 loc) · 207 Bytes
 
1
2
3
4
5
6
7
8
9
#!/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