Skip to content

Commit

Permalink
Release CLI v0.6.2 [release]
Browse files Browse the repository at this point in the history
* Add support for launching file URLs pipelines

* Set version 0.6.2

* File prefix uses only one /
  • Loading branch information
jordeu authored Jun 23, 2022
1 parent a1f6f9c commit 967c8ec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.6.1
0.6.2
2 changes: 1 addition & 1 deletion src/main/java/io/seqera/tower/cli/commands/LaunchCmd.java
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ protected Response exec() throws ApiException, IOException {
Long wspId = workspaceId(workspace.workspace);

// If the pipeline has at least one backslash consider it an external pipeline.
if (pipeline.startsWith("https://") || pipeline.startsWith("http://")) {
if (pipeline.startsWith("https://") || pipeline.startsWith("http://") || pipeline.startsWith("file:/")) {
return runNextflowPipeline(wspId);
}

Expand Down

0 comments on commit 967c8ec

Please sign in to comment.