mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
Fixing the path config values
This commit is contained in:
parent
46f086340c
commit
1e6bf202f7
1 changed files with 3 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
module.exports = function (grunt) {
|
||||
var join = require('path').join;
|
||||
var rel = require('path').join.bind(null, grunt.config.get('root'));
|
||||
var directory = join(__dirname, '../../', 'esvm');
|
||||
var directory = join(grunt.config.get('root'), 'esvm');
|
||||
|
||||
return {
|
||||
options: {
|
||||
|
@ -13,7 +13,8 @@ module.exports = function (grunt) {
|
|||
config: {
|
||||
path: {
|
||||
home: rel('1.4.2'),
|
||||
config: rel('1.4.2/config'),
|
||||
bin: rel('1.4.2/bin'),
|
||||
conf: rel('1.4.2/config'),
|
||||
data: rel('data_dir'),
|
||||
logs: rel('logs'),
|
||||
plugins: rel('1.4.2/plugins')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue