Changeset 43052 for branches/eam_branches/ipp-pstamp-20260421/pstamp/scripts/pstamp_get_image_job.pl
- Timestamp:
- Jun 12, 2026, 2:47:49 PM (7 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-pstamp-20260421/pstamp/scripts/pstamp_get_image_job.pl
r36048 r43052 16 16 use File::Basename; 17 17 use Digest::MD5::File qw( file_md5_hex ); 18 use IPC::Cmd 0.36 qw( can_run run);19 20 21 use PS::IPP::Config qw( :standard );18 use IPC::Cmd 0.36 qw( can_run ); 19 20 21 use PS::IPP::Config qw( :standard ps_run ); 22 22 23 23 my $product; … … 132 132 $command .= " --verbose" if $verbose; 133 133 my ( $success, $error_code, $full_buf, $stdout_buf, $stderr_buf ) = 134 run(command => $command, verbose => $verbose);134 ps_run(command => $command, verbose => $verbose); 135 135 unless ($success) { 136 136 my_die("Unable to perform $command: $error_code", $error_code >> 8); … … 174 174 my $command = "$pstamptool -deletefile -job_id $job_id"; 175 175 my ( $success, $error_code, $full_buf, $stdout_buf, $stderr_buf ) = 176 run(command => $command, verbose => $verbose);176 ps_run(command => $command, verbose => $verbose); 177 177 unless ($success) { 178 178 my_die("Unable to perform $command: $error_code", $error_code >> 8); … … 193 193 my $command = "$pstamptool -addfile -job_id $job_id -path $bundle_name"; 194 194 my ( $success, $error_code, $full_buf, $stdout_buf, $stderr_buf ) = 195 run(command => $command, verbose => $verbose);195 ps_run(command => $command, verbose => $verbose); 196 196 unless ($success) { 197 197 my_die("Unable to perform $command: $error_code", $error_code >> 8);
Note:
See TracChangeset
for help on using the changeset viewer.
