소스 검색

Update compileall.py

blueloveTH 1 개월 전
부모
커밋
3bac59701b
1개의 변경된 파일0개의 추가작업 그리고 1개의 파일을 삭제
  1. 0 1
      compileall.py

+ 0 - 1
compileall.py

@@ -11,7 +11,6 @@ output_dir = sys.argv[3]
 
 def do_compile(src_path, dst_path):
     assert os.path.isfile(src_path)
-    assert os.path.isfile(dst_path)
     cmd = f'{pkpy_exe} --compile "{src_path}" "{dst_path}"'
     print(src_path)
     assert os.system(cmd) == 0