From a9c8a841bc9ff8f91b05eef99c653e2428928daf Mon Sep 17 00:00:00 2001 From: Phil Ewels Date: Mon, 5 Feb 2024 21:44:08 +0100 Subject: [PATCH] Slight change in wording for error message about userEmulation (#4680) [ci skip] Signed-off-by: Phil Ewels --- .../src/main/groovy/nextflow/container/DockerBuilder.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/nextflow/src/main/groovy/nextflow/container/DockerBuilder.groovy b/modules/nextflow/src/main/groovy/nextflow/container/DockerBuilder.groovy index ad219a2f26..08c8bbe182 100644 --- a/modules/nextflow/src/main/groovy/nextflow/container/DockerBuilder.groovy +++ b/modules/nextflow/src/main/groovy/nextflow/container/DockerBuilder.groovy @@ -70,7 +70,7 @@ class DockerBuilder extends ContainerBuilder { addRunOptions(params.runOptions.toString()) if ( params.userEmulation?.toString() == 'true' ) - log.warn1("Undocumented setting `docker.userEmulation` is not supported any more - consider to remove it from your config") + log.warn1("Undocumented setting `docker.userEmulation` is not supported any more - please remove it from your config") if ( params.containsKey('remove') ) this.remove = params.remove?.toString() == 'true'