Skip to content

Commit e390cac

Browse files
committed
fix(grunt): fixed unescaped references in clean:dist task
1 parent 4c894b6 commit e390cac

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: templates/common/Gruntfile.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -136,9 +136,9 @@ module.exports = function (grunt) {
136136
dot: true,
137137
src: [
138138
'.tmp',
139-
'<%= yeoman.dist %>/*',
140-
'!<%= yeoman.dist %>/.git*',
141-
'!<%= yeoman.dist %>/Procfile'
139+
'<%%= yeoman.dist %>/*',
140+
'!<%%= yeoman.dist %>/.git*',
141+
'!<%%= yeoman.dist %>/Procfile'
142142
]
143143
}]
144144
},

0 commit comments

Comments
 (0)