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.
 
 
 
 
 
 

33 lines
843 B

#!/bin/sh
DEST_WWW_PATH=/var/www/html
if [ -f /var/www/html/minetest/chunkymap.php ]; then
DEST_WWW_PATH=/var/www/html/minetest
fi
if [ -f viewchunkymap.php ]; then
rm viewchunkymap.php
fi
wget https://github.com/expertmm/minetest-chunkymap/raw/master/web/viewchunkymap.php
sudo mv -f viewchunkymap.php $DEST_WWW_PATH/
if [ -f chunkymap.php ]; then
rm chunkymap.php
fi
wget https://github.com/expertmm/minetest-chunkymap/raw/master/web/chunkymap.php
sudo mv -f chunkymap.php $DEST_WWW_PATH/
DEST_FULLNAME=$DEST_WWW_PATH/chunkymap.php
if [ -f "$DEST_FULLNAME" ]; then
echo "$DEST_FULLNAME saved successfully."
else
echo "FAILED to save $DEST_FULLNAME."
fi
DEST_FULLNAME=$DEST_WWW_PATH/viewchunkymap.php
if [ -f "$DEST_FULLNAME" ]; then
echo "$DEST_FULLNAME saved successfully."
else
echo "FAILED to save $DEST_FULLNAME."
fi