-
Notifications
You must be signed in to change notification settings - Fork 31
Open
Labels
Milestone
Description
In the spec it appears that tesOutput.path_prefix is ignored if tesOutput.path doesn't contain wildcards.
However, when there are no wildcards provided we are still pruning the paths of the parent to just include the child.
tesOutput.path: /path/on/container/output/
tesOutput.path_prefix: # ignored
tesOutput.url: https://my.storage.org/bucket/output/
prune: /path/on/container/
This selective use of path_prefix seems confusing and what we be more consistnt to implement is always use the path_prefix such that you could do this:
tesOutput.path: /path/on/container/output/
tesOutput.path_prefix: /path/on
tesOutput.url: https://my.storage.org/bucket/container/output/
lbeckman314 and giventocode