IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 43053


Ignore:
Timestamp:
Jun 12, 2026, 2:50:18 PM (5 weeks ago)
Author:
eugene
Message:

minor change to comments

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-pstamp-20260421/PS-IPP-Config/lib/PS/IPP/Config.pm

    r43051 r43053  
    17551755}
    17561756
     1757## this function provides the same error handling of v0.36 run() for
     1758## later versions in which the returned error info is embedded in a
     1759## pretty print string.
    17571760sub ps_run {
    17581761
     
    17621765    my $command = $args{command};
    17631766
     1767    # default to low verbosity
    17641768    my $verbose = 0;
    17651769    if (exists $args{verbose}) { $verbose = $args{verbose}; }
     
    17691773    my ( $success, $error_msg, $full_buf, $stdout_buf, $stderr_buf ) = run(command => $command, verbose => $verbose);
    17701774
    1771     ## upon success, we can just return
     1775    ## upon success, we can just return error_code of 0
    17721776    if (defined $success && $success) {
    17731777        my $error_code = 0;
Note: See TracChangeset for help on using the changeset viewer.