From 20859b1d4a6bd59585eb7674951c74d971301129 Mon Sep 17 00:00:00 2001 From: Gili Tzabari Date: Mon, 12 Feb 2024 18:16:40 -0500 Subject: [PATCH] Fixed typo --- build/Project.mts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Project.mts b/build/Project.mts index dc3d9e2..2f2b0f2 100644 --- a/build/Project.mts +++ b/build/Project.mts @@ -371,7 +371,7 @@ class Project { changes.delete(changed); // Use POSIX paths across all platforms - const posixPath = changed.split(path.posix.sep).join(path.posix.sep); + const posixPath = changed.split(path.sep).join(path.posix.sep); posixPaths.push(posixPath); } project.log.info(`Updating: [${Array.from(filesToProcess).join(", ")}]`);