Skip to content

Commit

Permalink
Fix template's Markdown files overriding the project's Markdown files…
Browse files Browse the repository at this point in the history
… when generating
  • Loading branch information
mnapoli committed Oct 9, 2015
1 parent c884a0b commit a9d9163
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Module/Template/Step/LoadAssets.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ public function __invoke(Project $project)
$files->files()
->in($project->metadata['template.directory'])
->ignoreDotFiles(false)
->notName('*.twig');
->notName('*.twig')
->notName('*.md')
->notName('couscous.yml');

$project->watchlist->watchFiles($files);

Expand Down

0 comments on commit a9d9163

Please sign in to comment.