ItzBlitz98 / torrentflix

Nodejs cli app to search torrent sites and stream using peerflix
MIT License
347 stars 60 forks source link

`/usr/bin/env: ‘node\r’: No such file or directory` on Linux #97

Open smhmd opened 4 years ago

smhmd commented 4 years ago

image

This probably has to do with line endings between Windows and Linux (I'm using Linux). I had to delete the file and rewrite it to work. (alternatively, you could run some utility against it.)

ItzBlitz98 commented 4 years ago

Hm interesting what file did you have to delete ?

smhmd commented 4 years ago

This one: https://github.com/ItzBlitz98/torrentflix/blob/1600140721b520b34a59ca5d72c8e79eb36869f0/bin/torrentflix#L1-L2

On my system:

$ which torrentflix
/home/me/.npm-packages/bin/torrentflix
$ readlink -f /home/me/.npm-packages/bin/torrentflix
/home/me/.config/yarn/global/node_modules/torrentflix/bin/torrentflix

So, /home/me/.config/yarn/global/node_modules/torrentflix/bin/torrentflix. (I'm using yarn.)

ItzBlitz98 commented 4 years ago

After some research its because you are using yarn and i'm publishing from windows, This is apparently what happens in that scenario. I will try to publish future releases using Linux that should fix this issue.

smhmd commented 4 years ago

Is there an issue in https://github.com/yarnpkg/yarn about this to upvote?

ItzBlitz98 commented 4 years ago

I dont think its a yarn issue its https://github.com/npm/npm/issues/2097 Not sure why only yarn is effected though

smhmd commented 4 years ago

Still have to do this every now and then:

echo $'#!/usr/bin/env node\nrequire(\'../lib/cli.js\');' > /home/me/.config/yarn/global/node_modules/torrentflix/bin/torrentflix