macos uses keychain; remove stale comments

This commit is contained in:
Brian Pugh
2026-05-21 21:08:13 -04:00
parent c25e89672a
commit acd4819737
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -20,8 +20,8 @@ echo "[1/5] Checking prerequisites..."
for cmd in python3 curl; do
command -v "$cmd" >/dev/null || { echo "Error: $cmd is required"; exit 1; }
done
if [ ! -f "$HOME/.claude/.credentials.json" ]; then
echo "Warning: ~/.claude/.credentials.json not found."
if ! security find-generic-password -s "Claude Code-credentials" -a "$USER" -w >/dev/null 2>&1; then
echo "Warning: Claude Code OAuth token not found in Keychain (service 'Claude Code-credentials')."
echo " Sign in via Claude Code first, then re-run this installer."
echo " Continuing anyway — the daemon will retry on each poll."
fi