From f17c6d77d306b3ad2ca1273b2d85a0669ef1067d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Scott=20Gonz=C3=A1lez?= Date: Mon, 8 Apr 2013 14:43:37 -0400 Subject: [PATCH] Build: Change single quotes to double quotes. (cherry picked from commit b8efbd6c07ebcab2f2165033fcea9ded1b9a07a2) --- Gruntfile.js | 2 +- build/tasks/build.js | 2 +- build/tasks/testswarm.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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 -- 2.39.5