Release: Build themes and CDN zips.

This commit is contained in:
Scott González 2012-09-29 16:33:30 -04:00
parent 7882bf4548
commit 9b0c8b7041

View File

@ -64,6 +64,9 @@ function cloneRepo() {
if ( exec( "npm install" ).code !== 0 ) { if ( exec( "npm install" ).code !== 0 ) {
abort( "Error installing dependencies." ); abort( "Error installing dependencies." );
} }
if ( exec( "npm install download.jqueryui.com" ).code !== 0 ) {
abort( "Error installing dependencies." );
}
echo(); echo();
} }
@ -145,8 +148,7 @@ function buildRelease() {
echo(); echo();
echo( "Building release..." ); echo( "Building release..." );
// TODO: Build themes if ( exec( "grunt release_cdn" ).code !== 0 ) {
if ( exec( "grunt release" ).code !== 0 ) {
abort( "Error building release." ); abort( "Error building release." );
} }
echo(); echo();