mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
Fix start cmd on Windows
Original commit: elastic/kibana-plugin-helpers@7718cefd8a
This commit is contained in:
parent
7a3f7649fa
commit
7d4f1a56ca
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@ module.exports = function (plugin) {
|
|||
|
||||
var kibanaDir = resolve(plugin.root, '../kibana');
|
||||
|
||||
var cmd = 'bin/kibana';
|
||||
var cmd = (process.platform === 'win32') ? 'bin\\kibana.bat' : 'bin/kibana';
|
||||
var args = ['--dev', '--plugin-path', plugin.root];
|
||||
execFileSync(cmd, args, {
|
||||
cwd: kibanaDir,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue