From 30b4f24d773285fc2d5287628444545577364a7f Mon Sep 17 00:00:00 2001 From: Alex Pyrgiotis Date: Mon, 7 Oct 2024 21:20:41 +0300 Subject: [PATCH] FIXUP: Use the proper pip argument --- install/linux/vendor-pymupdf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/linux/vendor-pymupdf.py b/install/linux/vendor-pymupdf.py index e0234bf..1a0efdd 100755 --- a/install/linux/vendor-pymupdf.py +++ b/install/linux/vendor-pymupdf.py @@ -34,7 +34,7 @@ def main(): "--no-compile", "--target", args.dest, - "--requirements", + "--requirement", "/proc/self/fd/0", # XXX: pip does not read requirements.txt from stdin ] subprocess.check_output(cmd, input=container_requirements_txt)