IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 35470 for trunk/PS-IPP-PStamp


Ignore:
Timestamp:
May 1, 2013, 6:37:50 PM (13 years ago)
Author:
bills
Message:

in releasetool -listrelstack accept multiple -stack_type entries.
Have postage stamp parser accept 'notnightly' which it turns into -stack_type deep -stack_type reference

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/PS-IPP-PStamp/lib/PS/IPP/PStamp/Job.pm

    r35467 r35470  
    497497            my $stack_type = $row->{RUN_TYPE};
    498498            if (!isnull($stack_type)) {
    499                 $command .= " -stack_type $stack_type";
     499                if (lc($stack_type) eq 'notnightly') {
     500                    $command .= " -stack_type deep -stack_type reference";
     501                } else {
     502                    $command .= " -stack_type $stack_type";
     503                }
    500504            }
    501505        } else {
Note: See TracChangeset for help on using the changeset viewer.