Skip to content

Commit 59ffea8

Browse files
committed
Merge pull request #272 from phase2/task/support-make-yml
newer for make: Add support for make.yml file extension.
2 parents c76f64a + ae26d3c commit 59ffea8

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tasks/make.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,10 @@ module.exports = function(grunt) {
4848
// source directory to catch make files included from the primary one.
4949
grunt.config('drushmake', {
5050
default: {
51-
src: ['<%= config.srcPaths.make %>', '<%= config.srcPaths.drupal %>/**/*.make'],
51+
src: [
52+
'<%= config.srcPaths.make %>',
53+
'<%= config.srcPaths.drupal %>/**/*.{make,make.yml}'
54+
],
5255
dest: '<%= config.buildPaths.html %>',
5356
},
5457
options: {

0 commit comments

Comments
 (0)