##// END OF EJS Templates
run-tests.py: pass --install-scripts to setup.py...
Alexis S. L. Carvalho -
r5189:1843098e default
parent child Browse files
Show More
@@ -136,8 +136,9 b' def install_hg():'
136
136
137 os.chdir("..") # Get back to hg root
137 os.chdir("..") # Get back to hg root
138 cmd = ('%s setup.py clean --all'
138 cmd = ('%s setup.py clean --all'
139 ' install --force --home="%s" --install-lib="%s" >%s 2>&1'
139 ' install --force --home="%s" --install-lib="%s"'
140 % (sys.executable, INST, PYTHONDIR, installerrs))
140 ' --install-scripts="%s" >%s 2>&1'
141 % (sys.executable, INST, PYTHONDIR, BINDIR, installerrs))
141 vlog("# Running", cmd)
142 vlog("# Running", cmd)
142 if os.system(cmd) == 0:
143 if os.system(cmd) == 0:
143 if not verbose:
144 if not verbose:
General Comments 0
You need to be logged in to leave comments. Login now