Changeset 2882


Ignore:
Timestamp:
2001-12-04T06:29:00+13:00 (22 years ago)
Author:
paynter
Message:

Compensate for change to "convert" output (size data goes to STDERR
instead of STDOUT).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/perllib/plugins/ImagePlug.pm

    r2327 r2882  
    152152    print $outhandle "$command\n" if ($verbosity > 2);
    153153    my $result = '';
    154     $result = `$command` ;
     154    $result = `$command 2>&1` ;
    155155    print $outhandle "$result\n" if ($verbosity > 3);
    156156
     
    214214    print $outhandle "$command\n" if ($verbosity > 2);
    215215    my $result = "";
    216     $result = `$command` ;
     216    $result = `$command  2>&1` ;
    217217    print $outhandle "$result\n" if ($verbosity > 3);
    218218
Note: See TracChangeset for help on using the changeset viewer.