Fix: Use adjusted pip arguments in execute method
This commit is contained in:
parent
705f0706fd
commit
79b8639135
1 changed files with 1 additions and 1 deletions
|
|
@ -98,7 +98,7 @@ class PipCaller(CommandlineCaller):
|
|||
self._logger.debug("Version {} needs --no-use-wheel to properly work.".format(self.version))
|
||||
arg_list.append("--no-use-wheel")
|
||||
|
||||
command = [self._command] + list(args)
|
||||
command = [self._command] + list(arg_list)
|
||||
if self._use_sudo:
|
||||
command = ["sudo"] + command
|
||||
return self.call(command)
|
||||
|
|
|
|||
Loading…
Reference in a new issue