Browse Source

switch to git version of treasurer found via guessing url

master
poikilos 7 years ago
committed by Jacob Gustafson
parent
commit
9638ccba1e
  1. 42
      etc/change_hardcoded_world_name_first/game-install-ENLIVEN
  2. 43
      etc/unused/game-install-ENLIVEN-DEPRECATED.sh

42
etc/change_hardcoded_world_name_first/game-install-ENLIVEN

@ -376,47 +376,7 @@ add_git_mod technic technic https://github.com/minetest-mods/technic.git
# load technic/technic:
echo "load_mod_technic = true" >> "$WORLD_MT_PATH"
MTMOD_SRC_ZIP=treasurer0.2.0.zip
MTMOD_UNZ_NAME=treasurer
MTMOD_DEST_NAME=treasurer
MTMOD_DEST_PATH=$MT_MYGAME_MODS_PATH/$MTMOD_DEST_NAME
if [ -f "tsm_gift_example" ]; then
rm "tsm_gift_example"
fi
if [ -d "tsm_gift_example" ]; then
rm -Rf "tsm_gift_example"
fi
if [ -d "tsm_chests_example" ]; then
rm -Rf "tsm_chests_example"
fi
if [ -d "trm_default_example" ]; then
rm -Rf "trm_default_example"
fi
if [ -d "tsm_default_example" ]; then
rm -Rf "tsm_default_example"
fi
if [ ! -z "`ls | grep $MTMOD_UNZ_NAME`" ]; then # works with wildcard in variable
rm -Rf $MTMOD_UNZ_NAME
fi
if [ -f "$MTMOD_SRC_ZIP" ]; then
rm -f "$MTMOD_SRC_ZIP"
fi
wget -O $MTMOD_SRC_ZIP http://axlemedia.net/abiyahh/users/Wuzzy/downloads/treasurer0.2.0.zip
unzip $MTMOD_SRC_ZIP
sudo mv -f $MTMOD_UNZ_NAME "$MTMOD_DEST_PATH"
if [ ! -d "$MTMOD_DEST_PATH" ]; then
echo "ERROR: failed to unzip $MTMOD_DEST_PATH, so cannot continue." > $err_txt
cat $err_txt
echo " press Ctrl C to cancel ENLIVEN install or this terminal will close..."
sleep 1
echo " 3..."
sleep 1
echo " 2..."
sleep 1
echo " 1..."
sleep 1
exit 1
fi
add_git_mod treasurer minetest_treasurer http://repo.or.cz/minetest_treasurer.git
echo "load_mod_treasurer = true" >> "$WORLD_MT_PATH"
cd "$HOME/Downloads"

43
etc/unused/game-install-ENLIVEN-DEPRECATED.sh

@ -162,3 +162,46 @@ if [ ! -d "$MT_MYGAME_MODS_PATH/hudbars" ]; then
sudo rm -Rvf "$MT_MYGAME_MODS_PATH/hud_hunger"
fi
fi
MTMOD_SRC_ZIP=treasurer0.2.0.zip
MTMOD_UNZ_NAME=treasurer
MTMOD_DEST_NAME=treasurer
MTMOD_DEST_PATH=$MT_MYGAME_MODS_PATH/$MTMOD_DEST_NAME
if [ -f "tsm_gift_example" ]; then
rm "tsm_gift_example"
fi
if [ -d "tsm_gift_example" ]; then
rm -Rf "tsm_gift_example"
fi
if [ -d "tsm_chests_example" ]; then
rm -Rf "tsm_chests_example"
fi
if [ -d "trm_default_example" ]; then
rm -Rf "trm_default_example"
fi
if [ -d "tsm_default_example" ]; then
rm -Rf "tsm_default_example"
fi
if [ ! -z "`ls | grep $MTMOD_UNZ_NAME`" ]; then # works with wildcard in variable
rm -Rf $MTMOD_UNZ_NAME
fi
if [ -f "$MTMOD_SRC_ZIP" ]; then
rm -f "$MTMOD_SRC_ZIP"
fi
wget -O $MTMOD_SRC_ZIP http://axlemedia.net/abiyahh/users/Wuzzy/downloads/treasurer0.2.0.zip
unzip $MTMOD_SRC_ZIP
sudo mv -f $MTMOD_UNZ_NAME "$MTMOD_DEST_PATH"
if [ ! -d "$MTMOD_DEST_PATH" ]; then
echo "ERROR: failed to unzip $MTMOD_DEST_PATH, so cannot continue." > $err_txt
cat $err_txt
echo " press Ctrl C to cancel ENLIVEN install or this terminal will close..."
sleep 1
echo " 3..."
sleep 1
echo " 2..."
sleep 1
echo " 1..."
sleep 1
exit 1
fi

Loading…
Cancel
Save