From 85057afdd0b79477e7e967bea262bea64644793b Mon Sep 17 00:00:00 2001 From: Adam Talbot <12817534+adamrtalbot@users.noreply.github.com> Date: Thu, 1 Aug 2024 12:56:16 +0100 Subject: [PATCH] Update plugins/nf-validation/src/main/nextflow/validation/FormatValidators/DirectoryPathValidator.groovy Co-authored-by: Nicolas Vannieuwkerke <101190534+nvnieuwk@users.noreply.github.com> --- .../validation/FormatValidators/DirectoryPathValidator.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/nf-validation/src/main/nextflow/validation/FormatValidators/DirectoryPathValidator.groovy b/plugins/nf-validation/src/main/nextflow/validation/FormatValidators/DirectoryPathValidator.groovy index fd1ea9f5..1c64a7c3 100644 --- a/plugins/nf-validation/src/main/nextflow/validation/FormatValidators/DirectoryPathValidator.groovy +++ b/plugins/nf-validation/src/main/nextflow/validation/FormatValidators/DirectoryPathValidator.groovy @@ -12,7 +12,7 @@ public class DirectoryPathValidator implements FormatValidator { @Override public Optional validate(final String subject) { if (subject.matches("(s3://|az://|gs://).*")) { - log.debug("S3 paths are not supported by 'DirectoryPathValidator': '${subject}'") + log.debug("Cloud storage paths are not supported by 'DirectoryPathValidator': '${subject}'") return Optional.empty() } Path file = Nextflow.file(subject) as Path