Skip to content

Commit cc63d12

Browse files
committed
fix(ci): adjust ROOT_DIR path in teamcity script
1 parent 5187ff3 commit cc63d12

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
@@ -3,7 +3,7 @@ import { readFile, writeFile } from 'node:fs/promises';
33
import { join, resolve } from 'node:path';
44

55

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

99
const text = (await readFile(DATA_DIR));

0 commit comments

Comments
 (0)