From 05863f1bf8ee5a0e51ea540eaed69990b4a01667 Mon Sep 17 00:00:00 2001 From: Kristofers Solo Date: Tue, 2 Dec 2025 11:29:40 +0200 Subject: [PATCH] fix: update year --- 2025/scripts/get-aoc-input.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();