Skip to content

Commit a8b624a

Browse files
committed
fix(ci): correct path for DATA_DIR in fix-wrs script
1 parent cc63d12 commit a8b624a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.teamcity/scripts/fix-wrs/index.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { join, resolve } from 'node:path';
44

55

66
const ROOT_DIR = resolve('.');
7-
const DATA_DIR = join(ROOT_DIR, 'docs/kr.tree');
7+
const DATA_DIR = join(ROOT_DIR, 'kr.tree');
88

99
const text = (await readFile(DATA_DIR));
1010
const $ = await load(text, { xml: true });

0 commit comments

Comments
 (0)