From bd9f1aa8633c97ebe7205275a076b416870f989e Mon Sep 17 00:00:00 2001 From: Steve Todorov Date: Mon, 18 Jan 2016 02:43:27 +0200 Subject: [PATCH] Resolving #402. --- src/Compiler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100644 => 100755 src/Compiler.php diff --git a/src/Compiler.php b/src/Compiler.php old mode 100644 new mode 100755 index b19b9e56..b0906b82 --- a/src/Compiler.php +++ b/src/Compiler.php @@ -3215,7 +3215,7 @@ public function findImport($url) // for "normal" scss imports (ignore vanilla css and external requests) if (! preg_match('/\.css$|^https?:\/\//', $url)) { // try both normal and the _partial filename - $urls = [$url, preg_replace('/[^\/]+$/', '_\0', $url)]; + $urls = [$url, preg_replace('/[^\/]+$/', '_\0', $url), $url.'.css']; } foreach ($this->importPaths as $dir) {