From 44549d49187fe0d4aff81c42974c09c6d3226976 Mon Sep 17 00:00:00 2001 From: Andrew Ozz Date: Thu, 29 May 2014 19:33:00 +0000 Subject: [PATCH] Fix double quote jshint warning in Gruntfile.js, fixes #26751 git-svn-id: https://develop.svn.wordpress.org/trunk@28620 602fd350-edb4-49c9-b593-d223f7449a82 --- Gruntfile.js | 1 + 1 file changed, 1 insertion(+) diff --git a/Gruntfile.js b/Gruntfile.js index 5c343fa084..778247b481 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -85,6 +85,7 @@ module.exports = function(grunt) { // If the version includes an SVN commit (-12345), it's not a released alpha/beta. Append a date. version = version.replace( /-[\d]{5}$/, '-' + grunt.template.today( 'yyyymmdd' ) ); + /* jshint quotmark: true */ return "$wp_version = '" + version + "';"; }); }