IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 20338


Ignore:
Timestamp:
Oct 22, 2008, 3:00:30 PM (18 years ago)
Author:
Paul Price
Message:

Fixing syntax error.

File:
1 edited

Legend:

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

    r20101 r20338  
    214214
    215215    my $outputStatsReal = $ipprc->file_resolve($outputStats);
    216     &my_die("Couldn't find expected output file: $outputStats", $diff_id, $PS_EXIT_SYS_ERROR) unless unless -f $outputStatsReal;
     216    &my_die("Couldn't find expected output file: $outputStats", $diff_id, $PS_EXIT_SYS_ERROR) unless -f $outputStatsReal;
    217217
    218218    # measure chip stats
    219219    $command = "$ppStatsFromMetadata $outputStatsReal - DIFF_SKYCELL";
    220220    ( $success, $error_code, $full_buf, $stdout_buf, $stderr_buf ) =
    221         run(command => $command, verbose => $verbose);
     221        run(command => $command, verbose => $verbose);
    222222    unless ($success) {
    223         $error_code = (($error_code >> 8) or $PS_EXIT_PROG_ERROR);
    224         &my_die("Unable to perform ppStatsFromMetadata: $error_code", $diff_id, $error_code);
     223        $error_code = (($error_code >> 8) or $PS_EXIT_PROG_ERROR);
     224        &my_die("Unable to perform ppStatsFromMetadata: $error_code", $diff_id, $error_code);
    225225    }
    226226    foreach my $line (@$stdout_buf) {
    227         $cmdflags .= " $line";
     227        $cmdflags .= " $line";
    228228    }
    229229    chomp $cmdflags;
Note: See TracChangeset for help on using the changeset viewer.