aboutsummaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rwxr-xr-xbin/make_css2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/make_css b/bin/make_css
index 5844579a7..d663597cd 100755
--- a/bin/make_css
+++ b/bin/make_css
@@ -65,7 +65,7 @@ my @dirs = map { m{/} ? $_ : "web/cobrands/$_" } @ARGV;
# Initial compilation, to also discover all the included files.
my %includes;
my %include_to_main;
-foreach my $file (File::Find::Rule->file->name(qr/^[^_].*\.scss$/)->in(@dirs)) {
+foreach my $file (File::Find::Rule->file->extras({ follow => 1 })->name(qr/^[^_].*\.scss$/)->in(@dirs)) {
my @includes = compile($file, $verbose);
$includes{$file} = \@includes;
map { push @{$include_to_main{$_}}, $file } @includes ? @includes : $file;