We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
--mupdf
1 parent add6e09 commit f077eddCopy full SHA for f077edd
scripts/test.py
@@ -222,7 +222,7 @@ def main(argv):
222
implementations = next(args)
223
elif arg in ('--mupdf', '-m'):
224
mupdf = next(args)
225
- if not mupdf.startswith('git:') and mupdf != '-':
+ if not mupdf.startswith('git:') and '://' not in mupdf and mupdf != '-':
226
assert os.path.isdir(mupdf), f'Not a directory: {mupdf=}.'
227
mupdf = os.path.abspath(mupdf)
228
os.environ['PYMUPDF_SETUP_MUPDF_BUILD'] = mupdf
0 commit comments