Skip to content

Commit c9c4eee

Browse files
committed
rename
1 parent 1f4e523 commit c9c4eee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/build/patches.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ export async function readPatch(fileUrl: URL): Promise<any> {
6161
* Read, parse, and merge all KDL files under the input folder.
6262
*/
6363
export default async function readPatches(): Promise<any> {
64-
const inputFolder = new URL("../../inputfiles/patches/", import.meta.url);
65-
const fileUrls = await getAllKDLFileURLs(inputFolder);
64+
const patchDirectory = new URL("../../inputfiles/patches/", import.meta.url);
65+
const fileUrls = await getAllKDLFileURLs(patchDirectory);
6666

6767
const parsedContents = await Promise.all(fileUrls.map(readPatch));
6868

0 commit comments

Comments
 (0)