Skip to content

Commit

Permalink
Do include the chcp* files
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbuijs committed Apr 1, 2016
1 parent 1209948 commit 9310b6f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions dist/deploy.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,9 @@
process.exit(0);
}

ignore = ignore.filter(function (ignoredFile) {
return !ignoredFile.match(/^chcp/);
});
ignore = ignore.map(function (ignoredFile) {
return '!' + ignoredFile;
});
Expand Down
1 change: 1 addition & 0 deletions src/deploy.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
process.exit(0);
}

ignore = ignore.filter( ignoredFile => !ignoredFile.match(/^chcp/) )
ignore = ignore.map( ignoredFile => `!${ignoredFile}` )
ignore = ignore.filter( ignoredFile => !ignoredFile.match(/^chcp/) )

Expand Down

0 comments on commit 9310b6f

Please sign in to comment.