We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0972188 commit 8e94378Copy full SHA for 8e94378
zorg/buildbot/builders/ClangBuilder.py
@@ -533,7 +533,8 @@ def _getClangCMakeBuildFactory(
533
env=env))
534
535
# Get generated python, lnt
536
- python = InterpolateToPosixPath('%(prop:builddir)s/test/sandbox/Scripts/python')
+ virtualenv_dir = 'Scripts' if vs else 'bin'
537
+ python = InterpolateToPosixPath(f'%(prop:builddir)s/test/sandbox/{virtualenv_dir}/python')
538
lnt_ext = '.exe' if vs else ''
539
lnt = InterpolateToPosixPath(f'%(prop:builddir)s/test/sandbox/Scripts/lnt{lnt_ext}')
540
lnt_setup = InterpolateToPosixPath('%(prop:builddir)s/test/lnt/setup.py')
0 commit comments