aoc2024: fix full runner search path for solutions

This commit is contained in:
2024-12-01 07:58:03 +02:00
parent d6b170e274
commit 6662dc4a8d

View File

@@ -7,7 +7,7 @@ int main()
for (int i = 1; i <= 25; i++)
{
char command[128];
sprintf(command, "/bin/aoc2024/day%d", i);
sprintf(command, "/bin/aoc2024/aoc2024_day%d", i);
struct stat st;
if (stat(command, &st) == -1)