chore: 패키지 업데이트 및 빌드 스크립트 추가

This commit is contained in:
hansoo
2025-03-23 07:12:44 +09:00
parent f286f23842
commit db6cc7c005
10 changed files with 1047 additions and 5 deletions

38
scripts/cleanup-all-scripts.sh Executable file
View File

@@ -0,0 +1,38 @@
#!/bin/bash
# 모든 스크립트 파일 정리 스크립트
echo "모든 불필요한 스크립트 파일 정리 중..."
# 프로젝트 디렉토리로 이동
cd "$(dirname "$0")"
# 유지할 스크립트 파일 목록
KEEP_FILES=(
"fix-splash-screen-final.sh"
"restore-previous-splash.sh"
"cleanup-all-scripts.sh"
)
# 모든 .sh 파일 찾기
for script in *.sh; do
# 유지할 파일인지 확인
keep=false
for keep_file in "${KEEP_FILES[@]}"; do
if [ "$script" = "$keep_file" ]; then
keep=true
break
fi
done
# 유지할 파일이 아니면 삭제
if [ "$keep" = false ]; then
echo "삭제: $script"
rm -f "$script"
else
echo "유지: $script"
fi
done
echo "정리 완료!"
echo "남은 스크립트 파일:"
ls -la *.sh