diff --git a/spring-boot-cli/src/it/java/org/springframework/boot/cli/infrastructure/CommandLineInvoker.java b/spring-boot-cli/src/it/java/org/springframework/boot/cli/infrastructure/CommandLineInvoker.java index 447f3d6439..923b0d1518 100644 --- a/spring-boot-cli/src/it/java/org/springframework/boot/cli/infrastructure/CommandLineInvoker.java +++ b/spring-boot-cli/src/it/java/org/springframework/boot/cli/infrastructure/CommandLineInvoker.java @@ -144,7 +144,9 @@ public final class CommandLineInvoker { List lines = new ArrayList(); try { while ((line = reader.readLine()) != null) { - lines.add(line); + if (!line.startsWith("Picked up ")) { + lines.add(line); + } } } catch (IOException ex) {