during build, dont accidentally copy dumb txt files

This commit is contained in:
Adam Shaw
2013-08-31 20:50:00 -07:00
parent 9181e8be2e
commit 95fdefa98f
+1 -1
View File
@@ -153,7 +153,7 @@ module.exports = function(grunt) {
// copy license and changelog
config.copy.archiveMisc = {
src: "*.txt",
src: [ 'license.txt', 'changelog.txt' ],
dest: 'build/archive/'
};