Skip to content

Commit 7953161

Browse files
thestack_aiclaude
andcommitted
refactor: remove unnecessary bot profile step from install.sh
BotFather profile photo is a manual one-time action documented in README. No need to interrupt the install flow for it. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 1b7543f commit 7953161

1 file changed

Lines changed: 1 addition & 29 deletions

File tree

install.sh

Lines changed: 1 addition & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -690,35 +690,7 @@ else
690690
echo " NOTIFICATION_CHAT_IDS=<your_telegram_user_id>"
691691
fi
692692

693-
# ── Step 10: Set Telegram bot profile photo ──
694-
step "Setting bot profile photo..."
695-
696-
BOT_PROFILE_IMG="$SCRIPT_DIR/assets/bot-profile.png"
697-
if [[ -f "$BOT_PROFILE_IMG" ]]; then
698-
echo ""
699-
echo -e " ${BOLD}봇 프로필 사진을 Mr.Stack 로고로 설정하세요:${NC}"
700-
echo ""
701-
echo " 1. Telegram에서 @BotFather에게 메시지"
702-
echo " 2. /mybots → 내 봇 선택"
703-
echo " 3. Edit Bot → Edit Botpic"
704-
echo " 4. 아래 이미지를 전송:"
705-
echo ""
706-
echo -e " ${GREEN}$BOT_PROFILE_IMG${NC}"
707-
echo ""
708-
709-
# macOS: 파인더에서 이미지 열어줌
710-
if [[ "$(uname)" == "Darwin" ]]; then
711-
read -rp " 이미지를 파인더에서 열까요? [Y/n] " open_img
712-
if [[ ! "$open_img" =~ ^[Nn]$ ]]; then
713-
open -R "$BOT_PROFILE_IMG"
714-
info "Finder에서 bot-profile.png 위치를 열었습니다"
715-
fi
716-
fi
717-
else
718-
warn "bot-profile.png not found — skipping profile photo"
719-
fi
720-
721-
# ── Step 11: Create memory directory ──
693+
# ── Step 10: Create memory directory ──
722694
step "Setting up memory directory..."
723695

724696
MEMORY_DIR="$HOME/claude-telegram/memory/patterns"

0 commit comments

Comments
 (0)