Skip to content

Commit ae79c6f

Browse files
authored
Add cli opts shortcuts (#68)
Signed-off-by: Paolo Di Tommaso <[email protected]>
1 parent f7823d7 commit ae79c6f

File tree

1 file changed

+2
-2
lines changed
  • app/src/main/java/io/seqera/wave/cli

1 file changed

+2
-2
lines changed

app/src/main/java/io/seqera/wave/cli/App.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ public class App implements Runnable {
115115
@Option(names = {"--wave-endpoint"}, paramLabel = "''", description = "Wave service endpoint e.g. https://wave.seqera.io.")
116116
private String waveEndpoint;
117117

118-
@Option(names = {"--freeze"}, paramLabel = "false", description = "Request a container freeze.")
118+
@Option(names = {"--freeze", "-F"}, paramLabel = "false", description = "Request a container freeze.")
119119
private boolean freeze;
120120

121121
@Option(names = {"--platform"}, paramLabel = "''", description = "Platform to be used for the container build. One of: linux/amd64, linux/arm64.")
@@ -148,7 +148,7 @@ public class App implements Runnable {
148148
@Option(names = {"--conda-file"}, paramLabel = "''", description = "A Conda file used to build the container e.g. /some/path/conda.yaml.")
149149
private String condaFile;
150150

151-
@Option(names = {"--conda-package"}, paramLabel = "''", description = "One or more Conda packages used to build the container e.g. bioconda::samtools=1.17.")
151+
@Option(names = {"--conda-package", "--conda"}, paramLabel = "''", description = "One or more Conda packages used to build the container e.g. bioconda::samtools=1.17.")
152152
private List<String> condaPackages;
153153

154154
@Option(names = {"--conda-base-image"}, paramLabel = "''", description = "Conda base image used to to build the container (default: ${DEFAULT-VALUE}).")

0 commit comments

Comments
 (0)