From: Scott González Date: Mon, 8 Apr 2013 18:43:37 +0000 (-0400) Subject: Build: Change single quotes to double quotes. X-Git-Tag: 1.10.3~15 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=f17c6d77d306b3ad2ca1273b2d85a0669ef1067d;p=jquery-ui.git Build: Change single quotes to double quotes. (cherry picked from commit b8efbd6c07ebcab2f2165033fcea9ded1b9a07a2) --- diff --git a/Gruntfile.js b/Gruntfile.js index eca9f3e59..8e468484a 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -73,7 +73,7 @@ var }, main: { options: { - keepSpecialComments: '*' + keepSpecialComments: "*" }, src: "dist/jquery-ui.css", dest: "dist/jquery-ui.min.css" diff --git a/build/tasks/build.js b/build/tasks/build.js index 978bee004..09243cfb6 100644 --- a/build/tasks/build.js +++ b/build/tasks/build.js @@ -140,7 +140,7 @@ grunt.registerMultiTask( "zip", "Create a zip file for release", function() { cmd: "zip", args: [ "-r", dest, this.data.src ], opts: { - cwd: 'dist' + cwd: "dist" } }, function( err ) { if ( err ) { diff --git a/build/tasks/testswarm.js b/build/tasks/testswarm.js index 3361b7fa9..55c261650 100644 --- a/build/tasks/testswarm.js +++ b/build/tasks/testswarm.js @@ -53,7 +53,7 @@ function submit( commit, runs, configFile, version, done ) { } ) .addjob( { - name: 'jQuery UI ' + version + '#' + commit.substr( 0, 10 ) + '', + name: "jQuery UI " + version + "#" + commit.substr( 0, 10 ) + "", runs: runs, runMax: config.runMax, browserSets: config.browserSets