Fixed unreachable bug
This commit is contained in:
parent
eb13d6e0da
commit
a0486d9f6b
8
docs.org
8
docs.org
@ -110,12 +110,12 @@ This function verifies that the dependencies are installed. ~Docker~ and ~docker
|
|||||||
for YAMS to work.
|
for YAMS to work.
|
||||||
|
|
||||||
#+begin_src bash
|
#+begin_src bash
|
||||||
check_dependencies() {
|
check_dependencides() {
|
||||||
if command -v "$1" &> /dev/null; then
|
if command -v "$1" &> /dev/null; then
|
||||||
send_success_message "$1 exists ✅"
|
send_success_message "$1 exists ✅ "
|
||||||
else
|
else
|
||||||
echo -e "\e[31m⚠️ $1 not found! ⚠️\e[0m"
|
echo -e $(printf "\e[31m ⚠️ $1 not found! ⚠️\e[0m")
|
||||||
read -p "Do you want YAMS to install docker and docker-compose? (IT ONLY WORKS ON DEBIAN AND UBUNTU) [y/N]: " install_docker
|
read -p "Do you want YAMS to install docker and docker-compose? IT ONLY WORKS ON DEBIAN AND UBUNTU! [y/N]: " install_docker
|
||||||
install_docker=${install_docker:-"n"}
|
install_docker=${install_docker:-"n"}
|
||||||
|
|
||||||
if [ "$install_docker" == "y" ]; then
|
if [ "$install_docker" == "y" ]; then
|
||||||
|
@ -32,12 +32,12 @@ send_error_message() {
|
|||||||
exit 255
|
exit 255
|
||||||
}
|
}
|
||||||
|
|
||||||
check_dependencies() {
|
check_dependencides() {
|
||||||
if command -v "$1" &> /dev/null; then
|
if command -v "$1" &> /dev/null; then
|
||||||
send_success_message "$1 exists ✅"
|
send_success_message "$1 exists ✅ "
|
||||||
else
|
else
|
||||||
echo -e "\e[31m⚠️ $1 not found! ⚠️\e[0m"
|
echo -e $(printf "\e[31m ⚠️ $1 not found! ⚠️\e[0m")
|
||||||
read -p "Do you want YAMS to install docker and docker-compose? (IT ONLY WORKS ON DEBIAN AND UBUNTU) [y/N]: " install_docker
|
read -p "Do you want YAMS to install docker and docker-compose? IT ONLY WORKS ON DEBIAN AND UBUNTU! [y/N]: " install_docker
|
||||||
install_docker=${install_docker:-"n"}
|
install_docker=${install_docker:-"n"}
|
||||||
|
|
||||||
if [ "$install_docker" == "y" ]; then
|
if [ "$install_docker" == "y" ]; then
|
||||||
|
Loading…
x
Reference in New Issue
Block a user