IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 26, 2010, 10:15:03 AM (16 years ago)
Author:
bills
Message:

support building of raw distribution bundles with images from an alternate
location

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippScripts/scripts/dist_component.pl

    r26049 r27449  
    3838
    3939# Parse the command-line arguments
    40 my ($dist_id, $camera, $stage, $stage_id, $component, $path_base, $chip_path_base, $clean);
     40my ($dist_id, $camera, $stage, $stage_id, $component, $path_base, $chip_path_base, $clean, $alt_path_base);
    4141my ($outdir, $run_state, $data_state, $magicked, $no_magic, $poor_quality);
    4242my ($dbname, $save_temps, $verbose, $no_update, $logfile);
     
    5555           'no_magic'       => \$no_magic,   # magic is not required for this distribution run
    5656           'magicked'       => \$magicked,   # magicked state for this component
     57           'alt_path_base=s'=> \$alt_path_base,  # path to alternate inputs
    5758           'outdir=s'       => \$outdir,     # "directory" for outputs
    5859           'clean'          => \$clean,      # create clean distribution
     
    9798    $command .= " --no_magic" if defined $no_magic;
    9899    $command .= " --magicked" if defined $magicked;
     100    $command .= " --alt_path_base $alt_path_base" if defined $alt_path_base;
    99101    $command .= " --clean" if defined $clean;
    100102    $command .= " --save-temps" if defined $save_temps;
Note: See TracChangeset for help on using the changeset viewer.