Set $SHELL to correct value after install

This fixes a problem where $SHELL would equal f.ex /bin/bash after
running env zsh, breaking scripts that rely on $SHELL being set.
This commit is contained in:
Joel Kuzmarski 2016-08-18 03:56:26 -05:00 committed by GitHub
commit de61c55ce1

View file

@ -110,7 +110,7 @@ main() {
echo 'p.p.s. Get stickers and t-shirts at http://shop.planetargon.com.'
echo ''
printf "${NORMAL}"
env zsh
env SHELL=$(which zsh) zsh
}
main