Fix syntax error

This commit is contained in:
Manuel Thalmann 2024-07-14 10:10:04 +02:00
parent 68e8bc3bd3
commit 07b864ea22

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