Skip to content

Commit

Permalink
Fix typo in OCI mode warning message (#4633) [ci fast]
Browse files Browse the repository at this point in the history
Signed-off-by: Dr Marco Claudio De La Pierre <marco.delapierre@seqera.io>
  • Loading branch information
marcodelapierre committed Jan 5, 2024
1 parent d5a6a96 commit e216a87
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -84,7 +84,7 @@ class ContainerConfig extends LinkedHashMap {
return false
}
if( get('oci')?.toString()=='true' ) {
log.warn "The setting `singularity.oci` is deprecated - use `singularity.ociNative` instead"
log.warn "The setting `singularity.oci` is deprecated - use `singularity.ociMode` instead"
return true
}
if( get('ociMode')?.toString()=='true' )
Expand Down

0 comments on commit e216a87

Please sign in to comment.