IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 26086


Ignore:
Timestamp:
Nov 10, 2009, 11:12:41 AM (16 years ago)
Author:
bills
Message:

if --del --force don't return an error code if the product doesn't exist

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/DataStoreServer/scripts/dsreg

    r25667 r26086  
    168168
    169169    if (!$prod_id) {
    170         die("product $product not found\n");
     170        print STDERR "product '$product' not found\n";
     171        if ($force) {
     172            exit(0);
     173        } else {
     174            exit(1);
     175        }
    171176    }
    172177    $stmt = $dbh->prepare("SELECT fileset_id,fileset_name FROM dsFileset" .
Note: See TracChangeset for help on using the changeset viewer.