Is there a way to compile a scss
file using the sass
command line where the source file resides in a remote location?
i.e.
sass http://example.com/scss-files/style.scss /path/to/static/assets/output.css
when I try to do that (with a real source file, of course) I get this error:
Errno::ENOENT: No such file or directory - http
Is there a way to do that?
Thanks in advance.