Correction config/index.js path for replace adn removing it from the root config for builds

This commit is contained in:
Chris Cowan 2015-02-25 18:57:39 -07:00
parent 8a2f216dda
commit 9268660b3d
2 changed files with 2 additions and 2 deletions

View file

@ -33,7 +33,7 @@ module.exports = function (grunt) {
{
expand: true,
cwd: '<%= server %>/config/',
src: '**',
src: '*.yml',
dest: '<%= build %>/kibana/config'
},
{

View file

@ -25,7 +25,7 @@ module.exports = function (grunt) {
},
{
src: [join(src, 'server', 'config', 'index.js')],
dest: join(build, 'dist', 'kibana', 'config', 'index.js')
dest: join(build, 'dist', 'kibana', 'src', 'config', 'index.js')
}
]
},