Skip to content

Commit

Permalink
Test win
Browse files Browse the repository at this point in the history
  • Loading branch information
vladikoff committed Apr 24, 2022
1 parent 6c304de commit f01be07
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/grunt/file.js
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,7 @@ file.write = function(filepath, contents, options) {
// Handles symlinks by coping them as files or directories.
file.copy = function copy(srcpath, destpath, options) {
if (file.isLink(srcpath)) {
console.log('srcpath isLink', srcpath);
file._copySymbolicLink(srcpath, destpath);
} else if (file.isDir(srcpath)) {
// Copy a directory, recursively.
Expand Down

0 comments on commit f01be07

Please sign in to comment.