Skip to content

Commit fd588e7

Browse files
Fix for #474
1 parent db70fe7 commit fd588e7

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Diff for: looper/utils.py

+3
Original file line numberDiff line numberDiff line change
@@ -560,6 +560,9 @@ def read_looper_config_file(looper_config_path: str) -> dict:
560560

561561
# Expand paths in case ENV variables are used
562562
for k, v in return_dict.items():
563+
if k == SAMPLE_PL_ARG or k == PROJECT_PL_ARG:
564+
# Pipeline interfaces are resolved at a later point. Do it there only to maintain consistency. #474
565+
pass
563566
if isinstance(v, str):
564567
v = expandpath(v)
565568
# TODO this is messy because is_pephub_registry needs to fail on anything NOT a pephub registry path

0 commit comments

Comments
 (0)