##// END OF EJS Templates
test-filecache: use sys.executable to call python...
Mathias De Mare -
r46438:e01ea832 default
parent child Browse files
Show More
@@ -5,7 +5,7 b' import subprocess'
5 import sys
5 import sys
6
6
7 if subprocess.call(
7 if subprocess.call(
8 ['python', '%s/hghave' % os.environ['TESTDIR'], 'cacheable']
8 [sys.executable, '%s/hghave' % os.environ['TESTDIR'], 'cacheable']
9 ):
9 ):
10 sys.exit(80)
10 sys.exit(80)
11
11
General Comments 0
You need to be logged in to leave comments. Login now