Skip to content

Commit

Permalink
fix: missing pipeline name when none is found
Browse files Browse the repository at this point in the history
  • Loading branch information
JaimeSeqLabs committed Aug 11, 2023
1 parent c17fb18 commit c798af7
Showing 1 changed file with 1 addition and 1 deletion.
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 @@ -145,7 +145,7 @@ protected Response runTowerPipeline(Long wspId) throws ApiException, IOException
}

if (pipe == null) {
throw new InvalidResponseException(String.format("Pipeline '%s' not found", pipe));
throw new InvalidResponseException(String.format("Pipeline '%s' not found", pipeline));
}

Long sourceWorkspaceId = sourceWorkspaceId(wspId, pipe);
Expand Down

0 comments on commit c798af7

Please sign in to comment.