Searched refs:dry_run_outdir (Results 1 – 1 of 1) sorted by relevance
| /OK3568_Linux_fs/yocto/poky/scripts/lib/devtool/ |
| H A D | standard.py | 328 def _dry_run_copy(src, dst, dry_run_outdir, base_outdir): argument 333 dst = os.path.join(dry_run_outdir, relpath) 343 def _move_file(src, dst, dry_run_outdir=None, base_outdir=None): argument 345 dry_run_suffix = ' (dry-run)' if dry_run_outdir else '' 347 if dry_run_outdir: 349 _dry_run_copy(src, dst, dry_run_outdir, base_outdir) 356 def _copy_file(src, dst, dry_run_outdir=None, base_outdir=None): argument 358 dry_run_suffix = ' (dry-run)' if dry_run_outdir else '' 360 if dry_run_outdir: 361 _dry_run_copy(src, dst, dry_run_outdir, base_outdir) [all …]
|