From 6c5111ce9ac8ec65097606179b1c55530e7db7d9 Mon Sep 17 00:00:00 2001 From: Spencer Alger Date: Tue, 21 Oct 2014 12:46:36 -0700 Subject: [PATCH] [grunt] fix the plugins directory config --- Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index d932d020f31f..60b3780169eb 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -8,7 +8,7 @@ module.exports = function (grunt) { src: __dirname + '/src', // unbuild version of build build: __dirname + '/build', // copy of source, but optimized app: __dirname + '/src/kibana', // source directory for the app - plugins: __dirname + '/src/plugins', // source directory for the app + plugins: __dirname + '/src/kibana/plugins', // source directory for the app server: __dirname + '/src/server', // source directory for the server target: __dirname + '/target', // location of the compressed build targets buildApp: __dirname + '/build/kibana', // build directory for the app