diff --git a/2025/scripts/get-aoc-input.rs b/2025/scripts/get-aoc-input.rs index c5ea471..1bcb01f 100755 --- a/2025/scripts/get-aoc-input.rs +++ b/2025/scripts/get-aoc-input.rs @@ -49,7 +49,7 @@ fn main() -> Result<(), reqwest::Error> { .exit() }; - let url = format!("https://adventofcode.com/2024/day/{day}/input"); + let url = format!("https://adventofcode.com/2025/day/{day}/input"); println!("sending to `{}`", url); let client = Client::new();