This is an experimental copy for testing Poikilos' issue mirroring system. Note that Gitea's migration tool can import issues, but the "Issues" checkbox is disabled when "This repository will be a mirror" is enabled (it is for this repo).
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.

21 lines
495 B

#!/bin/sh
extracted_path=/home/owner/Downloads/minetest
mnf_name=install_manifest.txt
customDie() {
echo
echo "ERROR:"
echo "$1"
echo
echo
exit 1
}
if [ ! -f "$extracted_path/$mnf_name" ]; then
customDie "$extracted_path/$mnf_name is missing, so $0 cannot continue."
fi
cd $extracted_path || customDie "* cannot cd $extracted_path."
echo "- about to run 'sudo xargs rm < $mnf_name'..."
sudo xargs rm < $mnf_name
# as per http://irc.minetest.net/minetest/2015-08-06