dotfiles icon indicating copy to clipboard operation
dotfiles copied to clipboard

script/install does not run installers if one of them consumes stdin

Open sashee opened this issue 5 years ago • 1 comments

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 "{}" \;

sashee avatar Apr 20 '19 10:04 sashee

I had the same issue!

fredmontet avatar Jun 03 '19 05:06 fredmontet