fix: update OpenRouter API key assignment in update_changelog.sh

- Changed the assignment of OPENROUTER_API_KEY to a hardcoded value for immediate use, removing the environment variable fallback.
- This change simplifies the script's usage for users who may not have the environment variable set.
This commit is contained in:
anonpenguin23 2025-11-03 07:15:46 +02:00
parent 7fe56f11d5
commit 6abe43ddc6

View File

@ -16,7 +16,7 @@ warning() { echo -e "${YELLOW}[WARNING]${NOCOLOR} $1"; }
# OpenRouter API key
# To update: Edit this variable or set OPENROUTER_API_KEY environment variable
OPENROUTER_API_KEY="${OPENROUTER_API_KEY:-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}"
OPENROUTER_API_KEY="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"
# File paths
CHANGELOG_FILE="CHANGELOG.md"