Merge e70a63844d into c8fc1258b9
This commit is contained in:
commit
39c262ec75
1 changed files with 1 additions and 1 deletions
|
|
@ -330,7 +330,7 @@ exports.copyDirRecursive = function copyDirRecursive(srcDir, newDir, clbk) {
|
|||
|
||||
var filename = files.shift();
|
||||
if (filename === null || typeof filename == 'undefined')
|
||||
return clbk();
|
||||
return clbk(null);
|
||||
|
||||
var file = srcDir+'/'+filename,
|
||||
newFile = newDir+'/'+filename;
|
||||
|
|
|
|||
Reference in a new issue