Skip to content

Commit

Permalink
Fix dependencies parser
Browse files Browse the repository at this point in the history
  • Loading branch information
Warry committed Mar 17, 2011
1 parent 24a19f1 commit f82734e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/play/modules/sass/Engine.java
Expand Up @@ -158,7 +158,7 @@ private void findDependencies(File sass, List<File> all) {
for (String path : sassPaths) {
File depSass = new File(path + "/" + fileName);
if (!depSass.exists()) {
depSass = new File(depSass.getParentFile() + "/_" + depSass.getName());
depSass = new File(depSass.getParentFile() + "/_" + depSass.getName() + ".sass");
}
if (depSass.exists()) {
findDependencies(depSass, all);
Expand Down

0 comments on commit f82734e

Please sign in to comment.