Skip to content

Commit 886ae9a

Browse files
committed
[APM] Correct relative paths in scripts (#66159)
1 parent 3266697 commit 886ae9a

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

x-pack/plugins/apm/scripts/kibana-security/setup-custom-kibana-user-role.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import { argv } from 'yargs';
1515

1616
const config = yaml.safeLoad(
1717
fs.readFileSync(
18-
path.join(__filename, '../../../../../../../config/kibana.dev.yml'),
18+
path.join(__filename, '../../../../../../config/kibana.dev.yml'),
1919
'utf8'
2020
)
2121
);

x-pack/plugins/apm/scripts/upload-telemetry-data/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ if (!githubToken) {
3838
throw new Error('GITHUB_TOKEN was not provided.');
3939
}
4040

41-
const kibanaConfigDir = path.join(__filename, '../../../../../../../config');
41+
const kibanaConfigDir = path.join(__filename, '../../../../../../config');
4242
const kibanaDevConfig = path.join(kibanaConfigDir, 'kibana.dev.yml');
4343
const kibanaConfig = path.join(kibanaConfigDir, 'kibana.yml');
4444

0 commit comments

Comments
 (0)