Browse Source

Updated console to actually start console if server needs to be started.

pull/553/head
Jared Ballou 10 years ago
parent
commit
7c461dffce
  1. 2
      functions/command_console.sh

2
functions/command_console.sh

@ -39,7 +39,7 @@ else
while true; do
read -p "Do you want to start the server? [y/N]" yn
case $yn in
[Yy]* ) command_start.sh; break;;
[Yy]* ) command_start.sh; command_console.sh; break;;
[Nn]* ) break;;
* ) echo "Please answer yes or no.";;
esac

Loading…
Cancel
Save