2010-11-12 22:47:03 -08:00
|
|
|
import os
|
|
|
|
|
|
2010-11-12 23:14:02 -08:00
|
|
|
REDO_TARGET = os.environ.get('REDO_TARGET', '')
|
|
|
|
|
REDO_DEPTH = os.environ.get('REDO_DEPTH', '')
|
|
|
|
|
REDO_DEBUG = os.environ.get('REDO_DEBUG', '') and 1 or 0
|
|
|
|
|
REDO_VERBOSE = os.environ.get('REDO_VERBOSE', '') and 1 or 0
|
|
|
|
|
REDO_BASE = os.path.abspath(os.environ['REDO_BASE'])
|
2010-11-12 22:47:03 -08:00
|
|
|
while REDO_BASE.endswith('/'):
|
|
|
|
|
REDO_BASE = REDO_BASE[:-1]
|