jhillyerd / plugin-git

Git aliases plugin for the Fish shell (similar to oh-my-zsh git)
MIT License
607 stars 85 forks source link

return instead of exit in __git.init #59

Closed novadev94 closed 3 years ago

novadev94 commented 3 years ago

exit 0 causes the shell to exit/terminate when running fisher update.

And since __git.init is a function now, it's completely fine to use return 0 instead.

jhillyerd commented 3 years ago

Thanks!