From 36a9b816a76ba68d0b62a7e2d4ff5a7789cee8eb Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Sat, 15 Aug 2015 19:08:22 +0200 Subject: [PATCH] *Really* fix path in ci_install.py --- scripts/dev/ci_install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/dev/ci_install.py b/scripts/dev/ci_install.py index daa20c16f..888b5c42a 100644 --- a/scripts/dev/ci_install.py +++ b/scripts/dev/ci_install.py @@ -71,7 +71,7 @@ if 'APPVEYOR' in os.environ: with open(r'C:\Windows\system32\python3.bat', 'w') as f: f.write(r'@C:\Python34\python %*') - check_setup(r'C:\Python34\Scripts\python') + check_setup(r'C:\Python34\python.exe') elif os.environ.get('TRAVIS_OS_NAME', None) == 'linux': print("apt-get update...") apt_get(['update'])