Skip to content

Commit 10cf414

Browse files
committed
Fix Wave cli messages [ci fast]
Signed-off-by: Paolo Di Tommaso <[email protected]>
1 parent 9f0dac3 commit 10cf414

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plugins/nf-wave/src/main/io/seqera/wave/plugin/cli/WaveRunCmd.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ class WaveRunCmd {
5555

5656
void runContainer(List<String> args) {
5757
if( !args )
58-
throw new AbortOperationException("Missing container image - usage: nextflow plugin exec nf-wave container-run <image>")
58+
throw new AbortOperationException("Missing container image - usage: nextflow plugin nf-wave:run-container <image>")
5959
final image = args.pop()
6060
final target = resolveTargetImage(image)
6161
log.info "Resolved image: '$image' => '$target'"
@@ -98,7 +98,7 @@ class WaveRunCmd {
9898

9999
void getContainer(List<String> args) {
100100
if( !args )
101-
throw new AbortOperationException("Missing container image - usage: nextflow plugin exec nf-wave get-container <image>")
101+
throw new AbortOperationException("Missing container image - usage: nextflow plugin nf-wave:get-container <image>")
102102
final image = args.pop()
103103
final target = resolveTargetImage(image)
104104
log.info """\

0 commit comments

Comments
 (0)