Skip to content

Commit

Permalink
improve debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
drernie committed Oct 17, 2023
1 parent 8e2bac4 commit 565855e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ deps:
refresh:
./gradlew --refresh-dependencies dependencies

install:
install: compile
./gradlew copyPluginZip
rm -rf ${HOME}/.nextflow/plugins/$(PROJECT)-${VERSION}
cp -r build/plugins/$(PROJECT)-${VERSION} ${HOME}/.nextflow/plugins/
Expand Down
4 changes: 3 additions & 1 deletion plugins/nf-quilt/src/main/nextflow/quilt/QuiltProduct.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,9 @@ ${nextflow}
}
catch (Exception e) {
log.error("publish failed:", e)
throw e
print("FAILED: $pkg\n")
return
// throw e
}
print("SUCCESS: $pkg\n")
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ class QuiltPackage {
builder.setMetadata((ObjectNode)mapper.valueToTree(fullMeta))

Manifest m = builder.build()

log.debug("QuiltPackage.push", m)
m.push(namespace, "nf-quilt:${today()}-${msg}", parsed.workflowName)
}

Expand Down

0 comments on commit 565855e

Please sign in to comment.