Skip to content

Commit

Permalink
Fixing typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kronos30 committed Jul 15, 2023
1 parent db190bb commit 1dbe5da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions catkin_virtualenv/src/catkin_virtualenv/venv.py
Expand Up @@ -101,13 +101,13 @@ def initialize(self, python, use_system_packages, extra_pip_args, clean=True):
get_pip_path, _ = urlretrieve("https://bootstrap.pypa.io/pip/get-pip.py")
run_command([self._venv_bin("python"), get_pip_path], check=True)

run_command([self._venv_bin("python"), "-m", "-vvv", "pip", "install"] + extra_pip_args + preinstall, check=True)
run_command([self._venv_bin("python"), "-m", "pip", "install", -"vvv"] + extra_pip_args + preinstall, check=True)

def install(self, requirements, extra_pip_args):
""" Purge the cache first before installing. """ # (KLAD) testing to debug an issue on build farm
command = [self._venv_bin("python"), "-m", "pip", "cache", "purge"]
""" Sync a virtualenv with the specified requirements. """
command = [self._venv_bin("python"), "-m", "-vvv", "pip", "install"] + extra_pip_args
command = [self._venv_bin("python"), "-m", "pip", "install", "-vvv"] + extra_pip_args
for req in requirements:
run_command(command + ["-r", req], check=True)

Expand Down

0 comments on commit 1dbe5da

Please sign in to comment.