1
0
Fork 0

Add zsh installer to stow command

This commit is contained in:
Nexus 2024-07-14 02:30:36 +01:00
parent 1007c354b9
commit a214089bcd
Signed by: nex
GPG key ID: 0FA334385D0B689F

6
stow
View file

@ -13,3 +13,9 @@ fi;
echo 'All file conflicts resolved, stowing...'
stow -t "$HOME" .
echo 'Finished stowing.'
if [ ${SHELL##*/} == 'zsh' ]; then
echo 'Calling zsh installer'
$(pwd)/scripts/install-omz.sh
echo 'Done'.
fi;
echo 'All stowed!'