전환 결과 검증 체크리스트 재검증 #2

Open
forge-bot wants to merge 5 commits from forge/role-reviewer-reverify-001-attempt-1-run-a7fdd7885b4e into main
Showing only changes of commit 679e1e672f - Show all commits

View file

@ -0,0 +1,18 @@
#!/bin/bash
# 검증 실행 스크립트 (단일 명령어)
# 프로젝트: runtime-role-reverify-202607140530
cd "$(dirname "$0")/../.." 2>/dev/null || cd .
echo "=========================================="
echo " 전환 결과 검증 실행"
echo "=========================================="
echo ""
# 검증 체크리스트 실행
if [ -f "docs/verification/VERIFICATION_SCRIPT.sh" ]; then
bash docs/verification/VERIFICATION_SCRIPT.sh
else
echo "[ERROR] 검증 스크립트를 찾을 수 없습니다."
exit 1
fi