From 95fdefa98ff1e44b5dd16052bd65207431329e9e Mon Sep 17 00:00:00 2001 From: Adam Shaw Date: Sat, 31 Aug 2013 20:50:00 -0700 Subject: [PATCH] during build, dont accidentally copy dumb txt files --- Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index b96a5ec..44a20bc 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -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/' };