(options, path, dest)
| 73 | return shutil.copy2(source_path, target_path) |
| 74 | |
| 75 | def try_remove(options, path, dest): |
| 76 | _source_path, target_path = mkpaths(options, path, dest) |
| 77 | if not options.silent: |
| 78 | print('removing %s' % target_path) |
| 79 | try_unlink(target_path) |
| 80 | try_rmdir_r(options, os.path.dirname(target_path)) |
| 81 | |
| 82 | def install(options, paths, dest): |
| 83 | for path in paths: |
no test coverage detected
searching dependent graphs…