(options, paths, dest)
| 80 | try_rmdir_r(options, os.path.dirname(target_path)) |
| 81 | |
| 82 | def install(options, paths, dest): |
| 83 | for path in paths: |
| 84 | try_copy(options, path, dest) |
| 85 | |
| 86 | def uninstall(options, paths, dest): |
| 87 | for path in paths: |
nothing calls this directly
no test coverage detected
searching dependent graphs…