Browse Source

github configs now can download form another repo

pull/575/head
Daniel Gibbs 9 years ago
parent
commit
7bbdb82955
  1. 6
      functions/fn_install_serverdir

6
functions/fn_install_serverdir

@ -2,7 +2,7 @@
# LGSM fn_install_serverdir function # LGSM fn_install_serverdir function
# Author: Daniel Gibbs # Author: Daniel Gibbs
# Website: http://gameservermanagers.com # Website: http://gameservermanagers.com
lgsm_version="061115" lgsm_version="201215"
echo "" echo ""
echo "Server Directory" echo "Server Directory"
@ -13,6 +13,7 @@ echo ""
if [ -d "${filesdir}" ]; then if [ -d "${filesdir}" ]; then
fn_printwarningnl "A server is already installed here." fn_printwarningnl "A server is already installed here."
fi fi
if [ -z "${autoinstall}" ]; then
while true; do while true; do
read -p "Continue [y/N]" yn read -p "Continue [y/N]" yn
case $yn in case $yn in
@ -21,3 +22,6 @@ while true; do
* ) echo "Please answer yes or no.";; * ) echo "Please answer yes or no.";;
esac esac
done done
fi
mkdir -v "${filesdir}"
echo ""
Loading…
Cancel
Save