How to use the diff exit codes in the cli? #157
Answered
by
aconrad
pkwiatkowski0
asked this question in
Q&A
|
Hi @aconrad,
For the following example case: P.S. Looking forward for the |
Answered by
aconrad
Sep 30, 2022
Replies: 1 comment 2 replies
|
The exit code is what the command returns on the shell. You can access the exit code by typing pycobertura ...
PYCOBERTURA_EXIT_CODE=$?
echo $PYCOBERTURA_EXIT_CODELet me know if that answers your questions. |
2 replies
Answer selected by
pkwiatkowski0
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

The exit code is what the command returns on the shell. You can access the exit code by typing
$?right after running pycobertura, it's the syntax for getting the exit code of the last command run.Let me know if that answers your questions.