Skip to content

Commit

Permalink
all envars, with BAD ****
Browse files Browse the repository at this point in the history
  • Loading branch information
drernie committed Oct 21, 2023
1 parent 5dad623 commit 554fa02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/nf-quilt/src/main/nextflow/quilt/QuiltProduct.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -187,13 +187,13 @@ ${nextflow}
Map getEnvars() {
Map envars = [:]
System.getenv().each { key, value ->
if (GOOD_ENVARS.any { key.contains(it) }) {
// if (GOOD_ENVARS.any { key.contains(it) }) {
if (BAD_ENVARS.any { key.contains(it) }) {
envars[key] = '********'
} else {
envars[key] = value
}
}
// }
}
return envars
}
Expand Down

0 comments on commit 554fa02

Please sign in to comment.