Add _ check

This commit is contained in:
Steve Lacy 2014-01-20 14:41:36 -07:00
parent 61353e1131
commit 3fface49e9

View file

@ -14,6 +14,9 @@ module.exports = function (options) {
if (file.isNull()) {
return cb(null, file);
}
if (path.basename(file.path).indexOf('_') === 0) {
return cb();
}
opts.data = file.contents.toString();