Open sashee opened 5 years ago
One of my install.sh starts nvim and that reads the other install.sh paths from stdin. This prevents them from running.
install.sh
I've solved this by using find's exec to run the install.sh's:
find
exec
find . -name install.sh -exec sh -c "{}" \;
I had the same issue!
One of my
install.sh
starts nvim and that reads the otherinstall.sh
paths from stdin. This prevents them from running.I've solved this by using
find
'sexec
to run theinstall.sh
's: