Skip to content

Commit 1f7360d

Browse files
author
Peter Amstutz
committed
Add checklinks=False when loading job order documents.
1 parent 462239c commit 1f7360d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cwltool/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ def load_job_order(args, t, stdin, print_input_deps=False, relative_deps=False,
332332
elif job_order_file:
333333
input_basedir = args.basedir if args.basedir else os.path.abspath(os.path.dirname(job_order_file))
334334
try:
335-
job_order_object, _ = loader.resolve_ref(job_order_file)
335+
job_order_object, _ = loader.resolve_ref(job_order_file, checklinks=False)
336336
except Exception as e:
337337
_logger.error(str(e), exc_info=(e if args.debug else False))
338338
return 1

0 commit comments

Comments
 (0)