From d839d1569ba6b483847f027e1d674ed47bc184a4 Mon Sep 17 00:00:00 2001 From: Micke <155267459+reallesee@users.noreply.github.com> Date: Sat, 12 Jul 2025 16:34:37 +0200 Subject: [PATCH] Fix path handling in glob pattern for cross-platform compatibility --- src/scripts/helper/find-nonchecksummed-addresses.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripts/helper/find-nonchecksummed-addresses.ts b/src/scripts/helper/find-nonchecksummed-addresses.ts index 22a0f6cc338..30b5c9f1871 100644 --- a/src/scripts/helper/find-nonchecksummed-addresses.ts +++ b/src/scripts/helper/find-nonchecksummed-addresses.ts @@ -54,7 +54,7 @@ const checkFile = async (filePath: string) => { const processDirectories = async () => { try { for (const directoryPath of directoryPaths) { - const paths = await glob(directoryPath + "/**/*") + const paths = await glob(path.join(directoryPath, "**/*")) // Process each file for (const filepath of paths) {