Commit 77c69ad4ba83

Vincent Demeester <vincent@sbr.pm>
2026-02-18 13:27:21
fix(dots): replace broken emoji in ensure-auth.sh
Replaced broken replacement characters with clean unicode symbols: ⚙️ for creating, → for preserved OAuth tokens.
1 parent 909b635
Changed files (1)
dots
dots/pi/agent/ensure-auth.sh
@@ -27,7 +27,7 @@ mkdir -p "$(dirname "$RUNTIME_AUTH")"
 
 # Initialize with empty object if auth.json doesn't exist
 if [ ! -f "$RUNTIME_AUTH" ]; then
-	echo "�� Creating $RUNTIME_AUTH..."
+	echo "⚙️  Creating $RUNTIME_AUTH..."
 	echo '{}' > "$RUNTIME_AUTH"
 	chmod 600 "$RUNTIME_AUTH"
 fi
@@ -63,6 +63,6 @@ jq -r 'to_entries | .[] | select(.value.type == "api_key") | "   - \(.key): \(.v
 OAUTH_COUNT=$(jq -r '[to_entries | .[] | select(.value.type == "oauth")] | length' "$RUNTIME_AUTH")
 if [ "$OAUTH_COUNT" -gt 0 ]; then
 	echo ""
-	echo "�� Preserved OAuth tokens:"
+	echo "→ Preserved OAuth tokens:"
 	jq -r 'to_entries | .[] | select(.value.type == "oauth") | "   - \(.key)"' "$RUNTIME_AUTH"
 fi