gutter_runner/extras/uninstall.sh
sergeypdev 59053d5cad Squashed 'libs/physfs/physfs/' content from commit adfdec6a
git-subtree-dir: libs/physfs/physfs
git-subtree-split: adfdec6af14e4d12551446e7ad060415ca563950
2025-04-25 11:42:13 +04: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