IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 39968


Ignore:
Timestamp:
Jan 31, 2017, 5:52:16 PM (9 years ago)
Author:
watersc1
Message:

Merge of updated version with size checks for small files.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tags/ipp-20150312/ippScripts/scripts/permcheck.pl

    r39966 r39968  
    370370        # neb-stat level handling
    371371        my $stat = $neb->stat($key);
    372         die "nebulous key: $key not found" unless $stat;   
     372        unless ($stat) {
     373            if (($stage eq 'camera')&&($key =~ /psf/)) {
     374                warn "nebulous key: $key not found";
     375            }
     376            else {
     377                die  "nebulous key: $key not found";
     378            }
     379        }
    373380        my $instances;
    374381        my $md5sum = '';
Note: See TracChangeset for help on using the changeset viewer.