Skip to content

Commit 16fbe31

Browse files
author
whitequark
committedFeb 15, 2018
WithProperties doesn't handle arrays.
1 parent c581b93 commit 16fbe31

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

Diff for: ‎master.cfg

+3-3
Original file line numberDiff line numberDiff line change
@@ -117,12 +117,12 @@ def condaEnv(use_local=False, extra_vars={}):
117117
'%(builddir)s', '..', 'miniconda', '%(condabindir)s'
118118
])
119119

120-
path_entries = [global_bin_path, '${PATH}']
120+
path_entries = [WithProperties(global_bin_path), '${PATH}']
121121
if use_local:
122-
path_entries.insert(0, local_bin_path)
122+
path_entries.insert(0, WithProperties(local_bin_path))
123123

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

0 commit comments

Comments
 (0)
Please sign in to comment.