Marcel Telka
2023-11-24 690da7502ec3f714610dfe7525b75c95b5ebf893
commit | author | age
690da7 1 --- virtualenv-20.24.7/tasks/make_zipapp.py.orig
MT 2 +++ virtualenv-20.24.7/tasks/make_zipapp.py
e99398 3 @@ -91,7 +91,7 @@
MT 4          into.mkdir(parents=True)
5          self.into = into
6          self.collected = defaultdict(lambda: defaultdict(dict))
7 -        self.pip_cmd = [str(Path(sys.executable).parent / "pip")]
8 +        self.pip_cmd = ["python", "-m", "pip"]
9          self._cmd = [*self.pip_cmd, "download", "-q", "--no-deps", "--dest", str(self.into)]
10  
11      def run(self, target, versions):