Skip to content

Commit

Permalink
esvm: use branch from package.json (#13149)
Browse files Browse the repository at this point in the history
Since versions are synced across the stack, the esvm config can use the
same branch configuration as Kibana itself.
  • Loading branch information
epixa committed Jul 27, 2017
1 parent c3f7b66 commit ab01081
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tasks/config/esvm.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@ module.exports = function (grunt) {
const resolve = require('path').resolve;
const directory = resolve(__dirname, '../../esvm');
const dataDir = resolve(directory, 'data_dir');
const pkgBranch = grunt.config.get('pkg.branch');

return {
options: {
branch: '5.5',
branch: pkgBranch,
fresh: !grunt.option('esvm-no-fresh'),
config: {
http: {
Expand Down

0 comments on commit ab01081

Please sign in to comment.