(suffixes)
| 90 | |
| 91 | |
| 92 | def remove_binaries(suffixes): |
| 93 | for f in os.listdir(os.path.join(root_dir, "_pydevd_bundle")): |
| 94 | for suffix in suffixes: |
| 95 | if f.endswith(suffix): |
| 96 | remove_if_exists(os.path.join(root_dir, "_pydevd_bundle", f)) |
| 97 | |
| 98 | |
| 99 | def build(): |