dotfiles
dotfiles copied to clipboard
script/install does not run installers if one of them consumes stdin
One of my install.sh
starts nvim and that reads the other install.sh
paths from stdin. This prevents them from running.
I've solved this by using find
's exec
to run the install.sh
's:
find . -name install.sh -exec sh -c "{}" \;
I had the same issue!