Skip to content

Commit

Permalink
script tags in Grunfile should use double quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesjwarren committed Oct 19, 2015
1 parent 4417ee2 commit f937359
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Gruntfile.js
Expand Up @@ -312,7 +312,7 @@ module.exports = function (grunt) {
options: {
startTag: '<!--VENDOR SCRIPTS-->',
endTag: '<!--VENDOR SCRIPTS END-->',
fileTmpl: '<script src=\'%s\'></script>',
fileTmpl: '<script src=\"%s\"></script>',
appRoot: './app/'
},
files: {
Expand All @@ -323,7 +323,7 @@ module.exports = function (grunt) {
options: {
startTag: '<!--SCRIPTS-->',
endTag: '<!--SCRIPTS END-->',
fileTmpl: '<script src=\'%s\'></script>',
fileTmpl: '<script src=\"%s\"></script>',
appRoot: './app/'
},
files: {
Expand Down

0 comments on commit f937359

Please sign in to comment.