Add a new -k (--keep-going) option, like make has.
Previously, the default was to *always* keep going, which is actually not usually what you want. Now we actually exit correctly after an error. Of course you still might have multiple errors before existing if you were building in parallel.
This commit is contained in:
parent
660e26c276
commit
b937e62d89
3 changed files with 11 additions and 3 deletions
1
vars.py
1
vars.py
|
|
@ -8,6 +8,7 @@ DEBUG = atoi.atoi(os.environ.get('REDO_DEBUG', ''))
|
|||
DEBUG_LOCKS = os.environ.get('REDO_DEBUG_LOCKS', '') and 1 or 0
|
||||
VERBOSE = os.environ.get('REDO_VERBOSE', '') and 1 or 0
|
||||
XTRACE = os.environ.get('REDO_XTRACE', '') and 1 or 0
|
||||
KEEP_GOING = os.environ.get('REDO_KEEP_GOING', '') and 1 or 0
|
||||
SHUFFLE = os.environ.get('REDO_SHUFFLE', '') and 1 or 0
|
||||
STARTDIR = os.environ['REDO_STARTDIR']
|
||||
BASE = os.environ['REDO_BASE']
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue