Added progress tracking to landing page. Fixed exclusions when extracting native files, fixed minor issue with config manager, optimizations and improvements to assetguard.

This commit is contained in:
Daniel Scalzi
2017-11-27 04:31:54 -05:00
parent 5352239f91
commit dd9e1418c8
7 changed files with 223 additions and 16 deletions

View File

@@ -236,7 +236,7 @@ class ProcessBuilder {
// Exclude noted files.
exclusionArr.forEach(function(exclusion){
if(exclusion.indexOf(fileName) > -1){
if(fileName.indexOf(exclusion) > -1){
shouldExclude = true
}
})