sync: from iop v1.1.177
This commit is contained in:
parent
86e72e1042
commit
d4f6f79bd4
5 changed files with 4 additions and 1 deletions
|
|
@ -1 +1 @@
|
|||
1.1.176
|
||||
1.1.177
|
||||
|
|
|
|||
|
|
@ -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
|
||||
}
|
||||
|
||||
|
|
|
|||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in a new issue