Readme cleanup, installer script curl capability added

This commit is contained in:
Marwolf
2018-08-22 10:53:53 -04:00
parent 90ff15f338
commit 895987b58f
2 changed files with 62 additions and 81 deletions

View File

@@ -1,3 +1,24 @@
#!/usr/bin/env bash
# shellcheck disable=SC1090
# Open RSC: A replica RSC private server framework
#
# Installs and updates Open RSC
#
# Install with this command (from your Linux machine):
#
# curl -sSL https://raw.githubusercontent.com/Open-RSC/Docker-Home/master/Linux_Installer.sh | bash
# -e option instructs bash to immediately exit if any command [1] has a non-zero exit status
# We do not want users to end up with a partially working install, so we exit the script
# instead of continuing the installation with something broken
set -e
cd /
sudo git clone https://github.com/Open-RSC/Docker-Home.git &>/dev/null
cd Docker-Home
clear
choice=""
RED=`tput setaf 1`