Use a single .redo dir for the entire build.
This commit is contained in:
parent
3c2fc49c63
commit
425a295d6f
4 changed files with 42 additions and 28 deletions
9
vars.py
Normal file
9
vars.py
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
import os
|
||||
|
||||
REDO_TARGET = os.getenv('REDO_TARGET', '')
|
||||
REDO_DEPTH = os.getenv('REDO_DEPTH', '')
|
||||
REDO_DEBUG = os.getenv('REDO_DEBUG', '') and 1 or 0
|
||||
REDO_VERBOSE = os.getenv('REDO_VERBOSE', '') and 1 or 0
|
||||
REDO_BASE = os.path.abspath(os.getenv('REDO_BASE', ''))
|
||||
while REDO_BASE.endswith('/'):
|
||||
REDO_BASE = REDO_BASE[:-1]
|
||||
Loading…
Add table
Add a link
Reference in a new issue