Skip to content

Commit 534d9b8

Browse files
committed
Indicate when we are done processing sass
1 parent 83f00cf commit 534d9b8

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

app.pl

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,12 @@
1212

1313
plugin AssetPack => { pipes => [qw/Sass JavaScript Combine/] };
1414
app->asset->process('app.css' => 'sass/style.scss' );
15-
spurt app->asset->processed('app.css')->map("content")->join
16-
=> catfile qw{html css style.css};
15+
16+
my $style_sheet = catfile qw{html css style.css};
17+
app->log
18+
->debug("Processing SASS and copying the results over to $style_sheet...");
19+
spurt app->asset->processed('app.css')->map("content")->join => $style_sheet;
20+
app->log->debug('...Done');
1721

1822
## ROUTES
1923

0 commit comments

Comments
 (0)