diff options
author | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2012-11-25 23:32:24 +0100 |
---|---|---|
committer | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2012-11-25 23:35:30 +0100 |
commit | 62ae078f1472b15cd6513eceeff2b9d270b94d46 (patch) | |
tree | 3ff09e1c08c5e5884531adddcd0d8f51c30f5ab1 /build/release | |
parent | d7adc2bae9a443cc791da6de1ee9ef710c328fa8 (diff) | |
download | jquery-ui-62ae078f1472b15cd6513eceeff2b9d270b94d46.tar.gz jquery-ui-62ae078f1472b15cd6513eceeff2b9d270b94d46.zip |
Build: Install shell dependencies in the right direcytory. Update trac instructions to point out that only minutes and seconds need to be changed. Fixes #8848 - Build: release.js fails to require shelljs/global.
Diffstat (limited to 'build/release')
-rw-r--r-- | build/release/release.js | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/build/release/release.js b/build/release/release.js index 0e41702e9..4efa1d2b7 100644 --- a/build/release/release.js +++ b/build/release/release.js @@ -262,8 +262,9 @@ function gatherContributors() { function updateTrac() { echo( newVersion.cyan + " was tagged at " + tagTime.cyan + "." ); - echo( "Close the " + newVersion.cyan + " Milestone with the above date and time." ); - echo( "Create the " + newVersion.cyan + " Version with the above date and time." ); + echo( "Close the " + newVersion.cyan + " Milestone." ); + echo( "Create the " + newVersion.cyan + " Version." ); + echo( "When Trac asks for date and time, match the above. Should only change minutes and seconds." ); echo( "Create a Milestone for the next minor release." ); } @@ -342,9 +343,7 @@ function bootstrap( fn ) { fs.mkdirSync( baseDir ); console.log( "Installing dependencies..." ); - require( "child_process" ).exec( "npm install shelljs colors", { - cwd: baseDir - }, function( error ) { + require( "child_process" ).exec( "npm install shelljs colors", function( error ) { if ( error ) { console.log( error ); return process.exit( 1 ); |