File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -51,6 +51,10 @@ module.exports = function(grunt) {
5151 return path . join ( grunt . config ( 'config.buildPaths.html' ) , 'profiles' ) ;
5252 } ;
5353
54+ module . configPath = function ( ) {
55+ return path . join ( grunt . config ( 'config.buildPaths.html' ) , 'config' ) ;
56+ } ;
57+
5458 module . sitePath = function ( ) {
5559 return path . join ( grunt . config ( 'config.buildPaths.html' ) , 'sites' ) ;
5660 } ;
Original file line number Diff line number Diff line change @@ -28,7 +28,8 @@ module.exports = function(grunt) {
2828 create : [
2929 drupal . libraryPath ( ) ,
3030 drupal . modulePath ( ) ,
31- drupal . profilePath ( )
31+ drupal . profilePath ( ) ,
32+ drupal . configPath ( )
3233 ]
3334 }
3435 } ) ;
@@ -50,6 +51,10 @@ module.exports = function(grunt) {
5051 dest : drupal . profilePath ( ) ,
5152 filter : 'isDirectory'
5253 } ) ;
54+ grunt . config ( [ 'symlink' , 'config' ] , {
55+ src : '<%= config.srcPaths.drupal %>/config' ,
56+ dest : drupal . configPath ( )
57+ } ) ;
5358 grunt . config ( [ 'symlink' , 'sites' ] , {
5459 expand : true ,
5560 cwd : '<%= config.srcPaths.drupal %>/sites' ,
You can’t perform that action at this time.
0 commit comments