From 967c8ec1ff6b4642f66f6ca5835140b53b3c17cf Mon Sep 17 00:00:00 2001 From: Jordi Deu-Pons Date: Thu, 23 Jun 2022 10:03:19 +0200 Subject: [PATCH] Release CLI v0.6.2 [release] * Add support for launching file URLs pipelines * Set version 0.6.2 * File prefix uses only one / --- VERSION | 2 +- src/main/java/io/seqera/tower/cli/commands/LaunchCmd.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index ee6cdce3..b6160487 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.6.1 +0.6.2 diff --git a/src/main/java/io/seqera/tower/cli/commands/LaunchCmd.java b/src/main/java/io/seqera/tower/cli/commands/LaunchCmd.java index 52d87a35..ce3c6a76 100644 --- a/src/main/java/io/seqera/tower/cli/commands/LaunchCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/LaunchCmd.java @@ -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); }