From be5a1f4876c5b5b1651e56b045ce726f820cd0b8 Mon Sep 17 00:00:00 2001 From: Andrew Koroluk Date: Thu, 28 Jan 2016 15:18:43 -0500 Subject: [PATCH] fix(grunt:build): don't copy local.env.sample closes #1570 --- app/templates/Gruntfile(grunt).js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/templates/Gruntfile(grunt).js b/app/templates/Gruntfile(grunt).js index 87846d184..a3d3a695a 100644 --- a/app/templates/Gruntfile(grunt).js +++ b/app/templates/Gruntfile(grunt).js @@ -424,7 +424,8 @@ module.exports = function (grunt) { dest: '<%%= yeoman.dist %>', src: [ 'package.json', - '<%%= yeoman.server %>/**/*' + '<%%= yeoman.server %>/**/*', + '!<%%= yeoman.server %>/config/local.env.sample.js' ] }] },