Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
another fix for jenkins
  • Loading branch information
sdpython committed May 24, 2015
1 parent c22c53d commit a1ac878
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pyquickhelper/jenkinshelper/jenkins_server.py
Expand Up @@ -223,7 +223,7 @@ def replacements(cmd, python, suffix):
if module_name == "pyquickhelper":
lines = res.split("\n")
for i, line in enumerate(lines):
if "/simple/ pyquickhelper" in line and "--extra-index-url http://localhost" in line:
if "/simple/ pyquickhelper" in line and "--find-links http://localhost" in line:
lines[i] = ""
res = "\n".join(lines)

Expand Down
2 changes: 1 addition & 1 deletion src/pyquickhelper/pycode/windows_scripts.py
Expand Up @@ -368,7 +368,7 @@
%pythonexe_rel% auto_setup_dep.py install
if %errorlevel% neq 0 exit /b %errorlevel%
cd ..\\..
%jenkinspythonpip% install --no-cache-dir --extra-index-url http://localhost:__PORT__/simple/ pyquickhelper
%jenkinspythonpip% install --no-index --no-cache-dir --find-links http://localhost:__PORT__/simple/ pyquickhelper
if %errorlevel% neq 0 exit /b %errorlevel%
echo #######################################################_requirements_begin
Expand Down

0 comments on commit a1ac878

Please sign in to comment.