added bash for other scripts

This commit is contained in:
Dan 2022-01-23 20:20:44 +13:00
parent 040dc6d975
commit 4db4bb4196
Signed by: dan
GPG Key ID: 57ABEF39C546B028
1 changed files with 3 additions and 3 deletions

6
start.sh Normal file → Executable file
View File

@ -10,12 +10,12 @@ read -r -p "Do you want to install a server repository or do you want to add a c
if [[ $prompt == "SERVER" ]]
then
./scripts/server.sh
bash scripts/server.sh
elif [[ $prompt == "client" ]]
then
./scripts/client.sh
bash scripts/client.sh
else
echo "Nothing has been selected."
fi
fi