xref: /OpenGrok/tools/src/main/python/opengrok_tools/utils/exitvals.py (revision 2d57dc692b4dd10e696ca6922510f6cecded1bfd)
1# This is a special exit code that is recognized by sync.py to terminate
2# the processing of the command sequence.
3CONTINUE_EXITVAL = 2
4SUCCESS_EXITVAL = 0
5FAILURE_EXITVAL = 1
6