From a0a898076e6737b5d0b6068a580c8f4ce93f058d Mon Sep 17 00:00:00 2001 From: Guilherme Branco Stracini Date: Sat, 21 Sep 2024 14:28:48 +0100 Subject: [PATCH] Update install.sh --- install.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/install.sh b/install.sh index 5e5fae0..98ec5b7 100644 --- a/install.sh +++ b/install.sh @@ -1,16 +1,16 @@ #!/bin/bash echo "Enter the project name:" -read project_name +read -r project_name echo "Enter the default namespace:" -read namespace +read -r namespace echo "Enter the SonarCloud URL:" -read sonarcloud_url +read -r sonarcloud_url echo "Enter the HealthChecks.io ID:" -read healthchecks_id +read -r healthchecks_id echo "Setting up project: $project_name" @@ -38,4 +38,4 @@ echo "Project setup complete." echo "Performing additional PHP setup tasks..." # Add any additional setup commands here -echo "Setup finished successfully." \ No newline at end of file +echo "Setup finished successfully."