Skip to content

Commit

Permalink
Forgot to double escape templates
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Feb 11, 2013
1 parent 76458ea commit 0e64ced
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/templates/Gruntfile.js
Expand Up @@ -87,7 +87,7 @@ module.exports = function (grunt) {
all: {
options: {
run: true,
urls: ['http://localhost:<%= connect.test.options.port %>/index.html']
urls: ['http://localhost:<%%= connect.test.options.port %>/index.html']
}
}
},
Expand Down Expand Up @@ -209,8 +209,8 @@ module.exports = function (grunt) {
files: [{
expand: true,
dot: true,
cwd: '<%= yeoman.app %>',
dest: '<%= yeoman.dist %>',
cwd: '<%%= yeoman.app %>',
dest: '<%%= yeoman.dist %>',
src: [
'*.{ico,txt}',
'.htaccess'
Expand Down

0 comments on commit 0e64ced

Please sign in to comment.