Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
kronos30 committed Jul 15, 2023
1 parent 1dbe5da commit 6d5d19d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion catkin_virtualenv/src/catkin_virtualenv/venv.py
Expand Up @@ -101,7 +101,7 @@ 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", "pip", "install", -"vvv"] + 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
Expand Down

0 comments on commit 6d5d19d

Please sign in to comment.