From 4db4bb4196d3630b7f746317e06081a9f03d4d96 Mon Sep 17 00:00:00 2001 From: Dan Date: Sun, 23 Jan 2022 20:20:44 +1300 Subject: [PATCH] added bash for other scripts --- start.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) mode change 100644 => 100755 start.sh diff --git a/start.sh b/start.sh old mode 100644 new mode 100755 index fcf86b9..1de2092 --- a/start.sh +++ b/start.sh @@ -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 \ No newline at end of file +fi