You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
most code does a simple if($?) after CAF:Process; but there is code (like ncm-download) that uses more leborate check
...
$proc->execute();
if (!POSIX::WIFEXITED($?) || POSIX::WEXITSTATUS($?) != 0) {
$self->error("could not get GSSAPI credentials: $errs");
return 0;
}
figure out what the best way is to check for success (maybe redefine $? based on above checks), and also add it as a new method.
The text was updated successfully, but these errors were encountered:
stdweird
changed the title
Prorcess: add method to test for failure based on exitcode
Process: add method to test for failure based on exitcode
Aug 9, 2016
most code does a simple
if($?)
afterCAF:Process
; but there is code (likencm-download
) that uses more leborate checkfigure out what the best way is to check for success (maybe redefine
$?
based on above checks), and also add it as a new method.The text was updated successfully, but these errors were encountered: