Add a second call to patchShebangs to#261
Conversation
The call to `npm rebuild` can bring in additional executable scripts which need to be patched as well. This relates to issue svanderburg#184
|
@tshaynik I also ran into a similar problem, but my guess is that the only artifacts that need to be patched are the executable scripts in There is also a pull request that specifically patches the binaries only: #266 I'm considering doing this instead, because a double patchshebang over the entire tree makes deployments unnecessary slow. |
That makes sense. Patching everything is probably overkill!
|
The call to
npm rebuildcan bring in additional executable scriptswhich need to be patched as well.
This relates to issue #184