Lines Matching refs:dst_file
30 dst_file = os.path.join(dst_dir, file_name)
32 print('Copying {} to {}...'.format(src_file, dst_file))
34 _install_dir(src_file, dst_file)
36 _install_symlink(src_file, dst_file)
38 _install_file(src_file, dst_file)
48 def _install_symlink(src_file, dst_file): argument
49 dirname = os.path.dirname(dst_file)
53 os.symlink(link_target, dst_file)
56 def _install_file(src_file, dst_file): argument
57 dirname = os.path.dirname(dst_file)
61 shutil.copy2(src_file, dst_file)