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 8a74267 commit 9948339Copy full SHA for 9948339
virtualenvwrapper/user_scripts.py
@@ -32,7 +32,7 @@ def run_script(script_path, *args):
32
if os.path.exists(script_path):
33
cmd = [script_path] + list(args)
34
if msys:
35
- cmd = [os.path.join(os.environ['MSYS_HOME'],'bin','sh.exe')] + cmd
+ cmd = [get_path(os.environ['MSYS_HOME'],'bin','sh.exe')] + cmd
36
log.debug('running %s', str(cmd))
37
try:
38
return_code = subprocess.call(cmd)
0 commit comments