blooblib/extern/physfs-release-3.2.0/extras/uninstall.sh

11 lines
207 B
Bash
Raw Normal View History

2024-03-28 07:50:49 +01:00
#!/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