We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dffe32c commit f57c9d5Copy full SHA for f57c9d5
1 file changed
cue.py
@@ -693,8 +693,10 @@ def setup_for_build(args):
693
if ci['os'] == 'windows':
694
if os.path.exists(r'C:\Strawberry\perl\bin'):
695
# Put strawberry perl in front of the PATH (so that Git Perl is further behind)
696
+ # Put Chocolatey\bin ahead to select correct make.exe
697
logger.debug('Adding Strawberry Perl in front of the PATH')
- os.environ['PATH'] = os.pathsep.join([r'C:\Strawberry\c\bin',
698
+ os.environ['PATH'] = os.pathsep.join([r'C:\ProgramData\Chocolatey\bin',
699
+ r'C:\Strawberry\c\bin',
700
r'C:\Strawberry\perl\site\bin',
701
r'C:\Strawberry\perl\bin',
702
os.environ['PATH']])
0 commit comments