Build: Change single quotes to double quotes.

This commit is contained in:
Scott González 2013-04-08 14:43:37 -04:00
parent ab84e037ed
commit b8efbd6c07
3 changed files with 3 additions and 3 deletions

View File

@ -73,7 +73,7 @@ var
}, },
main: { main: {
options: { options: {
keepSpecialComments: '*' keepSpecialComments: "*"
}, },
src: "dist/jquery-ui.css", src: "dist/jquery-ui.css",
dest: "dist/jquery-ui.min.css" dest: "dist/jquery-ui.min.css"

View File

@ -140,7 +140,7 @@ grunt.registerMultiTask( "zip", "Create a zip file for release", function() {
cmd: "zip", cmd: "zip",
args: [ "-r", dest, this.data.src ], args: [ "-r", dest, this.data.src ],
opts: { opts: {
cwd: 'dist' cwd: "dist"
} }
}, function( err ) { }, function( err ) {
if ( err ) { if ( err ) {

View File

@ -53,7 +53,7 @@ function submit( commit, runs, configFile, version, done ) {
} ) } )
.addjob( .addjob(
{ {
name: 'jQuery UI ' + version + '#<a href="https://github.com/jquery/jquery-ui/commit/' + commit + '">' + commit.substr( 0, 10 ) + '</a>', name: "jQuery UI " + version + "#<a href='https://github.com/jquery/jquery-ui/commit/" + commit + "'>" + commit.substr( 0, 10 ) + "</a>",
runs: runs, runs: runs,
runMax: config.runMax, runMax: config.runMax,
browserSets: config.browserSets browserSets: config.browserSets