Skip to content

Commit 9f6e842

Browse files
committed
asv: use os dependent pathsep when pre-pending to PATH
1 parent da95f8e commit 9f6e842

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.spin/cmds.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ def _run_asv(cmd):
309309
'/usr/local/lib/ccache', '/usr/local/lib/f90cache'
310310
])
311311
env = os.environ
312-
env['PATH'] = f'EXTRA_PATH:{PATH}'
312+
env['PATH'] = f'{EXTRA_PATH}{os.pathsep}{PATH}'
313313

314314
# Control BLAS/LAPACK threads
315315
env['OPENBLAS_NUM_THREADS'] = '1'

0 commit comments

Comments
 (0)