This commit is contained in:
Daniel Flanagan 2022-12-01 16:44:05 -06:00
parent c32122bf50
commit 9a45b6c817
Signed by: lytedev
GPG Key ID: 5B2020A0F9921EF4
1 changed files with 1 additions and 0 deletions

View File

@ -13,6 +13,7 @@ if [ -f "$f" ]; then
fi
url="https://adventofcode.com/$AOC_YEAR/day/$DAY/input"
cookie="$(cat "$HOME/.advent-of-code-auth-cookie")"
mkdir -p "$(dirname "$f")"
if curl --fail-with-body -X GET "$url" -H "Cookie:$cookie" > "$f"; then
echo "Downloaded $url to $f"
exit 0