We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 905c28f commit d175adeCopy full SHA for d175ade
dev/tools/grunt/tools/collect-validation-files.js
@@ -27,7 +27,6 @@ module.exports = {
27
},
28
29
getFilesForValidate: function () {
30
-
31
var blackListFiles = glob.sync(pc.static.blacklist + '*.txt'),
32
whiteListFiles = glob.sync(pc.static.whitelist + '*.txt'),
33
blackList = this.readFiles(blackListFiles),
dev/tools/grunt/tools/fs-tools.js
@@ -26,7 +26,9 @@ module.exports = {
26
read: function (filePath) {
console.log('Collect data from ' + filePath + ': Start!');
- return glob.sync(filePath);
+ return glob.sync(filePath, {
+ symlinks: true
+ });
34
arrayRead: function (pathArr, callback) {
0 commit comments