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.
scss
sass
1 parent 01e0d84 commit 3a631d9Copy full SHA for 3a631d9
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