coderedcorp / django-sass

The absolute simplest way to use Sass with Django. Pure Python, minimal dependencies, no special configuration required!
Other
72 stars 7 forks source link

If outpath does not exist and appears to be a dir, create it #11

Closed vsalvino closed 3 years ago

vsalvino commented 3 years ago

If the user specifies an input file, but output path that does not exist, the program currently crashes trying to check if the output path is a directory.

In this situation, first check if the output path exists, if not, guess if it should be a directory or file, and create it if necessary.