BlessCSS / bless

CSS Post-Processor
blesscss.com
MIT License
282 stars 60 forks source link

Parameters don't work with absolute paths using node.js #22

Open gerbus opened 11 years ago

gerbus commented 11 years ago

I am using node to run blessc on a windows machine. What I want to be able to do is use absolute paths in parameters, but when I do it errors with NOENT (example below). Here is how I tried to call it:

C:\working_path> c:\blessc\blessc.cmd c:\somepath\styles.css c:\somepath\styles-blessed.css

Unfortunately when I try this (note that this does work with lessc.cmd), I get this error:

blessc: NOENT, open 'c:\working_path\c:\somepath\styles.css

Seems like the parameters only accept relative paths, because when I run it this way, everything works ok:

C:\working_path> c:\blessc\blessc.cmd ..\somepath\styles.css ..\somepath\styles-blessed.css