Lines Matching refs:dest
19 dest: str,
39 dest,
46 dest: str,
49 os.makedirs(dest, exist_ok=True)
52 destname = os.path.join(dest, item.name)
101 shutil.copystat(src, dest)
102 return dest
106 dest: str,
113 os.path.join(dest, os.path.basename(f)),
118 if os.path.isfile(os.path.join(dest, os.path.basename(f))):
119 dest = os.path.join(dest, os.path.basename(f))
123 if os.path.isfile(dest):
124 if filecmp.cmp(dest, f, shallow=False):
129 os.unlink(dest)
131 shutil.copy(f, dest)
147 options.dest,
170 for src, dest in zip(src_files, dest_files):
175 copy_file(src, os.path.join(options.dest, dest), deps)
221 build_utils.delete_directory(options.dest)
222 build_utils.make_directory(options.dest)