Remove last zsh call in install.sh

The call restarts zsh with the `-l` flag. In my case, I'm writing a script to bootstrap a new machine and this forces me to either put the ohmyzsh installation at the end, or to find some other way.

I would like to either choose by a flag to run that, for now that's just a convenience feature.
This commit is contained in:
Ștefan Buciu 2024-07-22 00:49:47 +03:00 committed by GitHub
commit b1c7791b2c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -549,8 +549,6 @@ EOF
echo "${FMT_YELLOW}Run zsh to try it out.${FMT_RESET}"
exit
fi
exec zsh -l
}
main "$@"