From 766d37cde809cff17b9a0307e1e354ba38e0a60b Mon Sep 17 00:00:00 2001 From: Fedi6431 <102946457+Fedi6431@users.noreply.github.com> Date: Thu, 13 Jun 2024 16:19:32 +0200 Subject: [PATCH] Update installer.sh --- Installer/Linux/installer.sh | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Installer/Linux/installer.sh b/Installer/Linux/installer.sh index 6736d7c..e756de0 100644 --- a/Installer/Linux/installer.sh +++ b/Installer/Linux/installer.sh @@ -1,10 +1,11 @@ #!/bin/bash + banner="What are you using: 1 Linux -2 Tremux +2 Termux " -read -p -n 1 "Enter system choice: " system +read -p "Enter system choice: " system if [ $system = 1 ]; then username=$USER @@ -14,10 +15,10 @@ if [ $system = 1 ]; then sudo apt autoremove -y cd /home/$username/Desktop/ - sudo apt install default-jdk + sudo apt install default-jdk -y java -version - echo Now you can use LHE-Local_Host_Executer made by Fedi6431 + echo "Now you can use LHE-Local_Host_Executer made by Fedi6431" elif [ $system = 2 ]; then apt update -y @@ -26,5 +27,5 @@ elif [ $system = 2 ]; then pkg install openjdk -y java -version - echo Now you can use LHE-Local_Host_Executer made by Fedi6431 + echo "Now you can use LHE-Local_Host_Executer made by Fedi6431" fi