nonexistent

This commit is contained in:
David Baker
2025-04-15 11:58:55 +01:00
committed by GitHub
parent db4c544b72
commit 42ac29359c

View File

@@ -37,7 +37,7 @@ export function loadJsonFile<T extends Json>(...paths: string[]): T {
const joinedPaths = path.join(...paths);
if (!fs.existsSync(joinedPaths)) {
console.log(`Skipping nonexisting file: ${joinedPaths}`);
console.log(`Skipping nonexistent file: ${joinedPaths}`);
return {} as T;
}