Still having a loop issue

This commit is contained in:
Marwolf
2018-08-22 11:08:33 -04:00
parent 361c133878
commit a0b4ae997e
2 changed files with 3 additions and 11 deletions

View File

@@ -1,5 +1,4 @@
#!/usr/bin/env bash #!/bin/bash
# shellcheck disable=SC1090
# Open RSC: A replica RSC private server framework # Open RSC: A replica RSC private server framework
# #
@@ -9,9 +8,7 @@
# #
# curl -sSL https://raw.githubusercontent.com/Open-RSC/Docker-Home/master/Linux_Cloner.sh | bash # curl -sSL https://raw.githubusercontent.com/Open-RSC/Docker-Home/master/Linux_Cloner.sh | bash
# -e option instructs bash to immediately exit if any command [1] has a non-zero exit status choice=""
# 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
cd / cd /
sudo git clone https://github.com/Open-RSC/Docker-Home.git &>/dev/null sudo git clone https://github.com/Open-RSC/Docker-Home.git &>/dev/null

View File

@@ -1,5 +1,4 @@
#!/usr/bin/env bash #!/bin/bash
# shellcheck disable=SC1090
# Open RSC: A replica RSC private server framework # Open RSC: A replica RSC private server framework
# #
@@ -9,10 +8,6 @@
# #
# curl -sSL https://raw.githubusercontent.com/Open-RSC/Docker-Home/master/Linux_Cloner.sh | bash # curl -sSL https://raw.githubusercontent.com/Open-RSC/Docker-Home/master/Linux_Cloner.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
choice="" choice=""
RED=`tput setaf 1` RED=`tput setaf 1`
GREEN=`tput setaf 2` GREEN=`tput setaf 2`