Searched refs:dry_run_outdir (Results 1 – 2 of 2) sorted by relevance
/openbmc/openbmc/poky/scripts/lib/devtool/ |
H A D | standard.py | 339 def _dry_run_copy(src, dst, dry_run_outdir, base_outdir): argument 344 dst = os.path.join(dry_run_outdir, relpath) 354 def _move_file(src, dst, dry_run_outdir=None, base_outdir=None): argument 356 dry_run_suffix = ' (dry-run)' if dry_run_outdir else '' 358 if dry_run_outdir: 360 _dry_run_copy(src, dst, dry_run_outdir, base_outdir) 367 def _copy_file(src, dst, dry_run_outdir=None, base_outdir=None): argument 369 dry_run_suffix = ' (dry-run)' if dry_run_outdir else '' 371 if dry_run_outdir: 372 _dry_run_copy(src, dst, dry_run_outdir, base_outdir) [all …]
|
/openbmc/openbmc/poky/scripts/lib/recipetool/ |
H A D | append.py | 353 dry_run_outdir = None 357 dry_run_outdir = dry_run_output.name 360 … redirect_output=dry_run_outdir, update_original_recipe=args.update_recipe) 374 with open(os.path.join(dry_run_outdir, appendfilename), 'r') as f:
|