From 3d722a809c00facfc1f3f8d04d7137827632ce96 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Sat, 13 Aug 2022 13:45:30 -0700 Subject: [PATCH] Remove just the *.so files and __pycache__ --- manylinux/do-build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manylinux/do-build.sh b/manylinux/do-build.sh index 5e870793..9d088317 100755 --- a/manylinux/do-build.sh +++ b/manylinux/do-build.sh @@ -87,8 +87,8 @@ function do_build() { # Clean up the Python parts of this build, since we can do more than one # build per invocation of the docker image. - rm -rf build/waf - rm -f wx/* || true + rm -rf build/waf wx/__pycache__ + rm -f wx/*.so || true }