mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
[ftr] use correct script path when running outside of repo root (#136397)
This commit is contained in:
parent
8ed5aaf92d
commit
7231d7c5a1
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ export async function runKibanaServer({
|
|||
};
|
||||
|
||||
const prefixArgs = devMode
|
||||
? [Path.relative(process.cwd(), Path.resolve(REPO_ROOT, 'scripts/kibana'))]
|
||||
? [Path.relative(procRunnerOpts.cwd, Path.resolve(REPO_ROOT, 'scripts/kibana'))]
|
||||
: [];
|
||||
|
||||
const buildArgs: string[] = config.get('kbnTestServer.buildArgs') || [];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue