Skip to content

Commit

Permalink
soConvert pkgKey
Browse files Browse the repository at this point in the history
  • Loading branch information
drernie committed Sep 8, 2024
1 parent cf6b077 commit 5b2f126
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ package nextflow.quilt

import nextflow.Session
import nextflow.quilt.jep.QuiltParser
import nextflow.quilt.jep.QuiltPackage
import nextflow.quilt.nio.QuiltPath
import nextflow.quilt.nio.QuiltPathFactory
import nextflow.trace.TraceObserver
Expand Down Expand Up @@ -81,7 +82,7 @@ class QuiltObserver implements TraceObserver {
}

static String pkgKey(QuiltPath path) {
return "${path.getBucket()}/${path.getPackageName()}"
return QuiltPackage.osConvert("${path.getBucket()}/${path.getPackageName()}")
}

void findOutputParams(Map<String, Object> params) {
Expand Down

0 comments on commit 5b2f126

Please sign in to comment.