feat: 초기 프로젝트 구조 추가
This commit is contained in:
9
check_build.py
Normal file
9
check_build.py
Normal file
@@ -0,0 +1,9 @@
|
||||
import os
|
||||
|
||||
dist_path = "E:/ANT/dist/reflector_inspector.exe"
|
||||
if os.path.exists(dist_path):
|
||||
size_mb = os.path.getsize(dist_path) / (1024 * 1024)
|
||||
print(f"빌드 성공: {dist_path}")
|
||||
print(f"파일 크기: {size_mb:.1f} MB")
|
||||
else:
|
||||
print("빌드 실패: exe 파일이 없음")
|
||||
Reference in New Issue
Block a user