We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ff4391f + 3a631d9 commit c1c14fdCopy full SHA for c1c14fd
src/file.cpp
@@ -404,7 +404,7 @@ namespace Sass {
404
}
405
for(size_t i=0; i<extension.size();++i)
406
extension[i] = tolower(extension[i]);
407
- if (extension == ".sass" && contents != 0) {
+ if (extension != ".scss" && contents != 0) {
408
char * converted = sass2scss(contents, SASS2SCSS_PRETTIFY_1 | SASS2SCSS_KEEP_COMMENT);
409
free(contents); // free the indented contents
410
return converted; // should be freed by caller
0 commit comments