aoc2024: fix `full` runner search path for solutions
This commit is contained in:
parent
d6b170e274
commit
6662dc4a8d
|
@ -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)
|
||||||
|
|
Loading…
Reference in New Issue