From c3468a8ac9cfd507c32f23c88363a0731bbe0e49 Mon Sep 17 00:00:00 2001 From: poikilos <7557867+poikilos@users.noreply.github.com> Date: Sun, 17 Mar 2019 21:40:02 -0400 Subject: [PATCH] fix typos --- webapp/install-mts.sh | 32 ++++++++++++++++++++++++-------- webapp/reset-minetest.sh | 4 ++-- 2 files changed, 26 insertions(+), 10 deletions(-) diff --git a/webapp/install-mts.sh b/webapp/install-mts.sh index 3d103e1..faf886b 100644 --- a/webapp/install-mts.sh +++ b/webapp/install-mts.sh @@ -16,9 +16,11 @@ if [ -f "$flag_file" ]; then fi if [ -f "mtcompile-program.pl" ]; then # perl mtcompile-program.pl build >& program.log + echo "Compiling via perl..." perl mtcompile-program.pl build --server >& program.log else # NOTE: no pl in $extracted_name, assuming bash: + echo "Compiling via bash..." bash -e mtcompile-program.sh build >& program.log fi if [ ! -f "$flag_file" ]; then @@ -45,14 +47,28 @@ if [ ! -d "$flag_dir" ]; then fi if [ ! -d "$HOME/games/ENLIVEN" ]; then cp -R "$flag_dir" "$HOME/games/ENLIVEN" - echo + echo "name = ENLIVEN" > "$HOME/games/ENLIVEN/game.conf" else - rsync -rt "$flag_dir/mods/coderbuild/" "$HOME/games/ENLIVEN/mods/coderbuild" - rsync -rt "$flag_dir/mods/codercore/" "$HOME/games/ENLIVEN/mods/codercore" - rsync -rt "$flag_dir/mods/coderedit/" "$HOME/games/ENLIVEN/mods/coderedit" - rsync -rt "$flag_dir/mods/coderfood/" "$HOME/games/ENLIVEN/mods/coderfood" - rsync -rt "$flag_dir/mods/codermobs/" "$HOME/games/ENLIVEN/mods/codermobs" - rsync -rt "$flag_dir/mods/decorpack/" "$HOME/games/ENLIVEN/mods/decorpack" - rsync -rt "$flag_dir/mods/mtmachines/" "$HOME/games/ENLIVEN/mods/mtmachines" + mod_name=coderbuild + echo "updating $mod_name..." + rsync -rt "$flag_dir/mods/$mod_name" "$HOME/games/ENLIVEN/mods" + mod_name=codercore + echo "updating $mod_name..." + rsync -rt "$flag_dir/mods/$mod_name" "$HOME/games/ENLIVEN/mods" + mod_name=coderedit + echo "updating $mod_name..." + rsync -rt "$flag_dir/mods/$mod_name" "$HOME/games/ENLIVEN/mods" + mod_name=coderfood + echo "updating $mod_name..." + rsync -rt "$flag_dir/mods/$mod_name" "$HOME/games/ENLIVEN/mods" + mod_name=codermobs + echo "updating $mod_name..." + rsync -rt "$flag_dir/mods/$mod_name" "$HOME/games/ENLIVEN/mods" + mod_name=decorpack + echo "updating $mod_name..." + rsync -rt "$flag_dir/mods/$mod_name" "$HOME/games/ENLIVEN/mods" + mod_name=mtmachines + echo "updating $mod_name..." + rsync -rt "$flag_dir/mods/$mod_name" "$HOME/games/ENLIVEN/mods" # cp -f "$flag_dir/mods/LICENSE" "$HOME/games/ENLIVEN/mods/LICENSE" fi diff --git a/webapp/reset-minetest.sh b/webapp/reset-minetest.sh index ddaf069..768e7d6 100755 --- a/webapp/reset-minetest.sh +++ b/webapp/reset-minetest.sh @@ -44,7 +44,7 @@ echo echo cd .. echo "Check libraries.log for errors, then..." -echo "- Run the following manually:" -echo " install.sh" +echo "- Run the following manually for SERVER only (no graphical client):" +echo " bash install-mts.sh" echo echo