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.

17 lines
457 B

#!/bin/sh
if [ -d "$HOME/Downloads/minetest" ]; then
cd "$HOME/Downloads"
cd minetest; sudo git pull; sudo make -j$(nproc)
#cd games; sudo git pull; sudo make -j$(nproc)
#git config global user.email ""
#git config global user.name "expertmm"
sudo git pull https://github.com/minetest/minetest_game.git
#sudo git fetch
#sudo git checkout HEAD games/minetest_game
#sudo make install
else
echo "ERROR: no minetest in $HOME/Downloads"
fi