Skip to content

Commit 2918a30

Browse files
committed
Using 'follow: true' option on glob in copy to follow symlinks for the copy static and tempbuild tasks.
1 parent 13f3d95 commit 2918a30

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

tasks/copy.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ module.exports = function(grunt) {
2626
cwd: '<%= config.srcPaths.drupal %>/static',
2727
src: ['**', '.**'],
2828
dest: '<%= config.buildPaths.html %>',
29-
dot: true
29+
dot: true,
30+
follow: true
3031
}
3132
]
3233
});
@@ -41,7 +42,8 @@ module.exports = function(grunt) {
4142
cwd: '<%= config.buildPaths.temp %>',
4243
src: ['**', '.**'],
4344
dest: '<%= config.buildPaths.html %>',
44-
dot: true
45+
dot: true,
46+
follow: true
4547
}
4648
]
4749
});

0 commit comments

Comments
 (0)