cling cpt: make sure TRAVIS_BUILD_DIR is found if set.
This commit is contained in:
parent
203956e373
commit
fa5aa3b2cc
@ -91,11 +91,11 @@ def exec_subprocess_check_output(cmd, cwd):
|
||||
return out
|
||||
|
||||
def travis_fold_start(tag):
|
||||
if TRAVIS_BUILD_DIR:
|
||||
if os.environ.get('TRAVIS_BUILD_DIR', None):
|
||||
print('travis_fold:start:cpt-%s:' % (tag))
|
||||
|
||||
def travis_fold_end(tag):
|
||||
if TRAVIS_BUILD_DIR:
|
||||
if os.environ.get('TRAVIS_BUILD_DIR', None):
|
||||
print('travis_fold:end:cpt-%s:' % (tag))
|
||||
|
||||
def box_draw_header():
|
||||
|
Loading…
x
Reference in New Issue
Block a user