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