sync: from iop v1.1.177

This commit is contained in:
toki 2026-07-29 09:47:09 +09:00
parent 86e72e1042
commit d4f6f79bd4
5 changed files with 4 additions and 1 deletions

View file

@ -1 +1 @@
1.1.176
1.1.177

View file

@ -62,6 +62,9 @@ sync_folder() {
[[ -n "$exclude" && "$name" == "$exclude" ]] && continue
rm -rf "$dst/$name"
cp -r "$item" "$dst/"
# 검증 실행 중 생긴 Python bytecode는 공통 산출물이 아니므로 전파하지 않는다.
find "$dst/$name" -type f \( -name '*.pyc' -o -name '*.pyo' \) -delete
find "$dst/$name" -depth -type d -name '__pycache__' -empty -delete
done
}