From ee4b4a254104fd1802ed97a27a4115427f2a3a24 Mon Sep 17 00:00:00 2001 From: Josh Chorlton Date: Tue, 20 Feb 2024 17:00:42 +0000 Subject: [PATCH] minor cli docstring fix (#4759) [ci skip] Signed-off-by: Josh Chorlton --- .../src/main/nextflow/cache/CloudCacheFactory.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/nf-cloudcache/src/main/nextflow/cache/CloudCacheFactory.groovy b/plugins/nf-cloudcache/src/main/nextflow/cache/CloudCacheFactory.groovy index c951bd5ba4..78a1fd3346 100644 --- a/plugins/nf-cloudcache/src/main/nextflow/cache/CloudCacheFactory.groovy +++ b/plugins/nf-cloudcache/src/main/nextflow/cache/CloudCacheFactory.groovy @@ -41,7 +41,7 @@ class CloudCacheFactory extends CacheFactory { if( !runName ) throw new AbortOperationException("Missing cache `runName`") final path = (Global.session as Session).cloudCachePath if( !path ) - throw new IllegalArgumentException("Cloud-cache path not defined - use either -cloudcatch run option or NXF_CLOUDCACHE_PATH environment variable") + throw new IllegalArgumentException("Cloud-cache path not defined - use either -cloudcache run option or NXF_CLOUDCACHE_PATH environment variable") final store = new CloudCacheStore(uniqueId, runName, path) return new CacheDB(store) }