core-unit-bioinformatics / reference-container

Build repository for reference container
MIT License
0 stars 0 forks source link

fix path error: workflow basedir parent is repo #2

Closed ptrebert closed 2 years ago

ptrebert commented 2 years ago

In functions module, line 42

 repo_path = pl.Path(workflow.basedir).absolute()
svenwillger commented 2 years ago

In functions module, line 68(!) code changed to:

repo_path = pl.Path(workflow.basedir).parent.resolve(strict=True)

commit hash: fix in functions module: repo_path

ptrebert commented 2 years ago

indeed, I put the wrong line there, sorry.

one request: please add the commit hash that fixed the issue in the closing message