File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
plugins/nf-prov/src/main/nextflow/prov Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ class BcoRenderer implements Renderer {
4343 private PathNormalizer normalizer
4444
4545 BcoRenderer (Map opts ) {
46- path = opts. file as Path
46+ path = ( opts. file as Path ) . complete()
4747 overwrite = opts. overwrite as Boolean
4848
4949 ProvHelper . checkFileOverwrite(path, overwrite)
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ class DagRenderer implements Renderer {
4141 private PathNormalizer normalizer
4242
4343 DagRenderer (Map opts ) {
44- path = opts. file as Path
44+ path = ( opts. file as Path ) . complete()
4545 overwrite = opts. overwrite as Boolean
4646
4747 ProvHelper . checkFileOverwrite(path, overwrite)
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ class LegacyRenderer implements Renderer {
3737 private boolean overwrite
3838
3939 LegacyRenderer (Map opts ) {
40- path = opts. file as Path
40+ path = ( opts. file as Path ) . complete()
4141 overwrite = opts. overwrite as Boolean
4242
4343 ProvHelper . checkFileOverwrite(path, overwrite)
You can’t perform that action at this time.
0 commit comments