Stefan Beller <[email protected]> writes: > + if test "$update_module" = "merge" || > + test "$update_module" = "rebase" || > + test "$update_module" = "none" > + then > + update_module=checkout > + fi
case "$update_module" in
merge | rebase | none)
update_module=checkout ;;
esac
Shorter and probably easier to update.

