Why do your scripts make 4 symlinks to `/opt/nodejs/node`? What's wrong with just one? `/usr/local/bin/node` should be sufficient, no? Same thing for `npm`. Also, why not use `ln -sf ...` instead of `unlink` and `ln ...`?
Why do your scripts make 4 symlinks to
/opt/nodejs/node? What's wrong with just one?/usr/local/bin/nodeshould be sufficient, no? Same thing fornpm.Also, why not use
ln -sf ...instead ofunlinkandln ...?