From 6662dc4a8db709d23104cdff7c14146e7990bf1f Mon Sep 17 00:00:00 2001 From: Bananymous Date: Sun, 1 Dec 2024 07:58:03 +0200 Subject: [PATCH] aoc2024: fix `full` runner search path for solutions --- userspace/aoc2024/full/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/userspace/aoc2024/full/main.cpp b/userspace/aoc2024/full/main.cpp index f279feac..6431e1f5 100644 --- a/userspace/aoc2024/full/main.cpp +++ b/userspace/aoc2024/full/main.cpp @@ -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)