From e390cac015974f691ab51261128b4215e878b25f Mon Sep 17 00:00:00 2001 From: Tyler Henkel Date: Sun, 23 Feb 2014 16:49:25 -0500 Subject: [PATCH] fix(grunt): fixed unescaped references in clean:dist task --- templates/common/Gruntfile.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/common/Gruntfile.js b/templates/common/Gruntfile.js index 59cdf4c67..c07675551 100644 --- a/templates/common/Gruntfile.js +++ b/templates/common/Gruntfile.js @@ -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' ] }] },