Skip to content

Commit f264fc5

Browse files
haksungjangclaude
andcommitted
fix: verify.sh Docusaurus 빌드 체크를 website/ 디렉토리에서 실행하도록 수정
루트에서 npm run build를 실행하면 내부적으로 yarn을 호출하는데 환경에 yarn이 없어 exit 127로 항상 FAIL 판정되던 문제 수정. website/ 디렉토리에서 직접 npm run build를 실행하도록 변경. Co-Authored-By: Claude Sonnet 4.6 <[email protected]>
1 parent c020062 commit f264fc5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.claude/scripts/verify.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ echo "===== trustedoss 자체 검증 시작 ====="
1010

1111
# 검증 1: Docusaurus 빌드
1212
echo "[1/11] Docusaurus 빌드 확인..."
13-
if npm run build --silent 2>/dev/null; then
13+
if (cd website && npm run build --silent 2>/dev/null); then
1414
echo " PASS: 빌드 성공"
1515
PASS=$((PASS+1))
1616
else

0 commit comments

Comments
 (0)