Kumara - predecessor to Koha
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

15 lines
531 B

#!/usr/bin/perl
#my @args=('issuewrapper.pl',"$env{'branchcode'}","$env{'usercode'}","$env{'telnet'}","$env{'queue'}","$env{'printtype'}");
$done = "Issues";
my $i=0;
while ($done eq "Issues") {
my @args=('./testissue.pl',@ARGV);
eval{system(@args)};
$exit_value = $? >> 8;
if ($exit_value){
$done=$exit_value;
}
}