Skip to content

Commit 7d2a608

Browse files
committed
Fix input data location
1 parent a3f3644 commit 7d2a608

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/project.mts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ import { fileURLToPath } from 'node:url';
33

44
export function getDataPath(dataPath: string): string {
55
const dirname = fileURLToPath(import.meta.url);
6-
return path.join(dirname, path.join('../../../../advent-of-code-2024-data', dataPath));
6+
return path.join(dirname, path.join('../../../../advent-of-code-data/2024', dataPath));
77
}

0 commit comments

Comments
 (0)