Skip to content

Commit

Permalink
WithProperties doesn't handle arrays.
Browse files Browse the repository at this point in the history
whitequark committed Feb 15, 2018
1 parent c581b93 commit 16fbe31
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions master.cfg
Original file line number Diff line number Diff line change
@@ -117,12 +117,12 @@ def condaEnv(use_local=False, extra_vars={}):
'%(builddir)s', '..', 'miniconda', '%(condabindir)s'
])

path_entries = [global_bin_path, '${PATH}']
path_entries = [WithProperties(global_bin_path), '${PATH}']
if use_local:
path_entries.insert(0, local_bin_path)
path_entries.insert(0, WithProperties(local_bin_path))

env = {
'PATH': WithProperties(path_entries),
'PATH': path_entries,
'BUILDNUMBER': WithProperties('%(buildnumber)s'),
# otherwise, conda's stdout and tests' stderr output interleaves badly.
'PYTHONUNBUFFERED': '1'

0 comments on commit 16fbe31

Please sign in to comment.