Browse Source

Make the EM_TMP dir if it doesn't exist.

master
poikilos 4 years ago
parent
commit
11d6e3434c
  1. 2
      install-mts.sh

2
install-mts.sh

@ -244,6 +244,8 @@ tmp_mt_copy=$EM_TMP/minetest
if [ -d "$tmp_mt_copy" ]; then
echo "* removing old $tmp_mt_copy..."
rm -Rf "$tmp_mt_copy" || customExit "rm -Rf \"$tmp_mt_copy\" failed."
elif [ ! -d "$EM_TMP" ]; then
mkdir -p "$EM_TMP" || customExit "mkdir -p \"$EM_TMP\" failed."
fi
old_release_line=
old_release_version=

Loading…
Cancel
Save