Skip to content

Commit

Permalink
Fix await command for running builds
Browse files Browse the repository at this point in the history
Signed-off-by: Paolo Di Tommaso <[email protected]>
  • Loading branch information
pditommaso committed Oct 12, 2023
1 parent 6535454 commit 15a1d8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/java/io/seqera/wave/cli/App.java
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ public void run() {
// submit it
SubmitContainerTokenResponse resp = client.submit(request);
// await build to be completed
if( await && !isEmpty(resp.buildId) )
if( await )
client.awaitImage(resp.targetImage);
// print the wave container name
System.out.println(dumpOutput(resp));
Expand Down

0 comments on commit 15a1d8d

Please sign in to comment.