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.
(cherry picked from commit 8d5eac9)
  • Loading branch information
epixa authored and spalger committed Jul 28, 2017
1 parent fc0f098 commit 270d544
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: '6.0',
branch: pkgBranch,
fresh: !grunt.option('esvm-no-fresh'),
config: {
http: {
Expand Down

0 comments on commit 270d544

Please sign in to comment.