Fixed the bower release process

This commit is contained in:
Spencer Alger
2014-02-06 14:55:28 -07:00
parent 5c3e17c6d0
commit 8530ebb48b
6 changed files with 6 additions and 5 deletions

View File

@ -31,7 +31,7 @@ module.exports = function (grunt) {
'browser_clients:build',
'run:clone_bower_repo',
'copy:dist_to_bower',
'run:release_bower_subm_tag'
'run:release_bower_tag'
]);
grunt.registerTask('_upload_archive', function (type) {

View File

@ -1,7 +1,7 @@
module.exports = {
source: {
src: [
'src/**/*.js -src/elasticsearch*/**/* -src/bower-elasticsearch-js/**/*',
'src/**/*.js -src/elasticsearch*/**/* -<%= bowerSubmodule %>/**/*',
'scripts/**/*.js',
'test/**/*.js -test/browser_integration/yaml_tests.js',
'grunt/**/*.js',

View File

@ -32,7 +32,7 @@ var config = {
clone_bower_repo: {
exec: [
'test -d src/bower_es_js',
'git clone git@github.com:elasticsearch/bower-elasticsearch-js.git src/bower_es_js'
'git clone git@github.com:elasticsearch/bower-elasticsearch-js.git <%= bowerSubmodule %>'
].join(' || '),
options: {
quiet: true