Skip to content

Commit be5a1f4

Browse files
committed
fix(grunt:build): don't copy local.env.sample
closes #1570
1 parent 6c4e926 commit be5a1f4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app/templates/Gruntfile(grunt).js

+2-1
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,8 @@ module.exports = function (grunt) {
424424
dest: '<%%= yeoman.dist %>',
425425
src: [
426426
'package.json',
427-
'<%%= yeoman.server %>/**/*'
427+
'<%%= yeoman.server %>/**/*',
428+
'!<%%= yeoman.server %>/config/local.env.sample.js'
428429
]
429430
}]
430431
},

0 commit comments

Comments
 (0)