Skip to content

Commit

Permalink
fix(grunt): fixed unescaped references in clean:dist task
Browse files Browse the repository at this point in the history
  • Loading branch information
DaftMonk committed Feb 23, 2014
1 parent 4c894b6 commit e390cac
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions templates/common/Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,9 @@ module.exports = function (grunt) {
dot: true,
src: [
'.tmp',
'<%= yeoman.dist %>/*',
'!<%= yeoman.dist %>/.git*',
'!<%= yeoman.dist %>/Procfile'
'<%%= yeoman.dist %>/*',
'!<%%= yeoman.dist %>/.git*',
'!<%%= yeoman.dist %>/Procfile'
]
}]
},
Expand Down

2 comments on commit e390cac

@sullivanpt
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi, when you get a spare minute can you explain this change or point me at a URL? I see it's related to issue #95, but 'grunt clean' is working properly for me without the escaping. Thanks.

@sullivanpt
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Never mind, I figured it out. It needs to be escaped because it's the Yeoman template to generate the Gruntfile. duh!

Please sign in to comment.