nicosantangelo / sublime-gulp

Run Gulp tasks and use snippets from Sublime Text
https://sublime-gulp.nicosantangelo.com/
MIT License
155 stars 18 forks source link

Path not being reported by shell...? (windows 10) #83

Open leonardopolly opened 7 years ago

leonardopolly commented 7 years ago

I don't know precisely what´s going on. I have gulp installed correctly and can run gulp from cmd in my project. The gulpfile is set correctly. But when I run gulp on sublime, the panel reports 'gulp is not a recognized command', even though it is installed globally (and locally on my project).

nicosantangelo commented 7 years ago

Sorry for the delay, been a bit busy with a moving this last couple of months.

The problem could be windows not reporting the path correctly, to verify this, try using the exec_args setting, giving it a value like:

    "exec_args": {
        "path": "/bin:/usr/bin:/usr/local/bin"
    }

Let me know!