Fixed captitals causing errors

This commit is contained in:
b.waal
2020-07-09 14:31:28 +02:00
parent d5822eba69
commit 4553590060

View File

@@ -12,13 +12,13 @@ source <(curl --retry 7 --retry-delay 5 -s "$repo"/raw/branch/"$branch"/ModulesM
#Setting Menulist to webserver
if [[ $webserv = "apache" ]]; then
#Apache Menulist
CMSL=("${ApacheCMSL[@]}")
options=("${ApacheOptions[@]}")
CMSL=("${apacheCMSL[@]}")
options=("${apacheOptions[@]}")
fi
if [[ $webserv = "nginx" ]]; then
#Nginx Menulist
CMSL=("${NginxCMSL[@]}")
options=("${NginxOptions[@]}")
CMSL=("${nginxCMSL[@]}")
options=("${nginxOptions[@]}")
fi