aoc2024: fix `full` runner search path for solutions

This commit is contained in:
Bananymous 2024-12-01 07:58:03 +02:00
parent d6b170e274
commit 6662dc4a8d
1 changed files with 1 additions and 1 deletions

View File

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