You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On Debian Testing+Sid, when I try, for example, check the syntax (Alt+Shift+S), or invoke any other action of this plugin, an error occurs (showed in the new tab or status bar): /usr/bin/env: node: No such file or directory
This happens with the default settings.
When I correct binDir value to /usr/bin, it just silently fails.
Accidentally discovered that the variable PATH (in terminal) contains /usr/binand/usr/local/bin, so I tried to set binDir value to /usr/local/bin:/usr/bin … and it worked!
Further investigation revealed that this happens because node is in /usr/bin, but coffee in /usr/local/bin.
Also tried on Ubuntu 12.04 and there is the same situation.
So I thought it's would be nice if plugin use /usr/local/bin:/usr/bin as a default value for binDir.
PS. I'm sorry for my google-translated English. :)
The text was updated successfully, but these errors were encountered:
If you installed via Package Control then go to Preferences then Package Settings then CoffeeScript. If not then it's wherever you installed it (probably Preferences then Browse Packages).
On Debian Testing+Sid, when I try, for example, check the syntax (Alt+Shift+S), or invoke any other action of this plugin, an error occurs (showed in the new tab or status bar):
/usr/bin/env: node: No such file or directory
This happens with the default settings.
When I correct
binDir
value to/usr/bin
, it just silently fails.Accidentally discovered that the variable PATH (in terminal) contains
/usr/bin
and/usr/local/bin
, so I tried to setbinDir
value to/usr/local/bin:/usr/bin
… and it worked!Further investigation revealed that this happens because
node
is in/usr/bin
, butcoffee
in/usr/local/bin
.Also tried on Ubuntu 12.04 and there is the same situation.
So I thought it's would be nice if plugin use
/usr/local/bin:/usr/bin
as a default value forbinDir
.PS. I'm sorry for my google-translated English. :)
The text was updated successfully, but these errors were encountered: