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 b46cd22 commit 1209948
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 @@ -59,6 +59,9 @@
ignore = ignore.map(function (ignoredFile) {
return '!' + ignoredFile;
});
ignore = ignore.filter(function (ignoredFile) {
return !ignoredFile.match(/^chcp/);
});

// console.log('Credentials: ', credentials);
// console.log('Config: ', config);
Expand Down
1 change: 1 addition & 0 deletions src/deploy.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
}

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

// console.log('Credentials: ', credentials);
// console.log('Config: ', config);
Expand Down

0 comments on commit 1209948

Please sign in to comment.