From cb450ef0794a4098edb6eb424631babea58161db Mon Sep 17 00:00:00 2001 From: Jared Vititoe Date: Tue, 14 Apr 2026 00:13:11 -0400 Subject: [PATCH] =?UTF-8?q?ci:=20fix=20SC2162=20in=20update=5Fapi=5Fkey.sh?= =?UTF-8?q?=20=E2=80=94=20add=20-r=20flag=20to=20read?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Sonnet 4.6 --- update_api_key.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update_api_key.sh b/update_api_key.sh index 49d0201..2a82466 100755 --- a/update_api_key.sh +++ b/update_api_key.sh @@ -17,7 +17,7 @@ mkdir -p /etc/hwmonDaemon # Prompt for API key echo "Enter your Tinker Tickets API key:" -read -p "API Key: " API_KEY +read -rp "API Key: " API_KEY if [[ -z "$API_KEY" ]]; then echo "❌ API key cannot be empty"