Hemanth.HM

A Computer Polyglot, CLI + WEB ♥'r.

Sublime Text Build System Errno 2

| Comments

While working on yeoman-sublime-plugin I faced an issue with the build system :

issue

[Errno 2] No such file or directory for the same reason setpath was devised.

But later on a simpler method was suggest by @kevvayo :

1
2
3
4
5
{
    "working_dir": "${project_path:${folder}}",
    "path": "$HOME/bin:/usr/local/bin:$PATH",
    "cmd": ["sh","-c","npm install && bower install"]
}

The trick was all about starting the shell :-)

Comments