Files
love-android/jni/physfs-2.1.0/extras/uninstall.sh
T
2014-02-02 01:28:41 +01:00

11 lines
207 B
Bash
Executable File

#!/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