Fix syntax error

This commit is contained in:
Manuel Thalmann 2024-07-14 10:10:04 +02:00
parent ef184da8d5
commit ea24ad15c1

View file

@ -9,7 +9,7 @@ begin
function runInstaller -a action
if [ -z "$action" ] || [ "$action" = "install" ]
installSW
else [ "$action" = "configure" ]
else if [ "$action" = "configure" ]
configureSW
end
end