Skip to content
This repository has been archived by the owner on Jan 31, 2024. It is now read-only.

Commit

Permalink
Fix start cmd on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
mkoertgen committed Jun 19, 2016
1 parent 5abf8ee commit 7718cef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/start.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 7718cef

Please sign in to comment.