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