I have a sh script that works fine if run it from terminal node /users/<my username>/Documents/work/cron-test/run-node.sh
#!usr/bin/env node
node /users/<my username>/Documents/work/cron-test/server.js
I setup crontab like this:
* * * * * sh /users/<my username>/documents/work/cron-test/run-node.sh >> /users/<my username>/documents/cron.log 2&>1
It shows no errors, but script doesn't execute
What am I doing wrong?

