Skip to content
This repository was archived by the owner on Jan 17, 2024. It is now read-only.

Commit f4cba9a

Browse files
committed
FEA Always output docker pull status
1 parent 732131d commit f4cba9a

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/main/java/com/gpuopenanalytics/jenkins/remotedocker/job/DockerImageConfiguration.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,10 +88,8 @@ public void setupImage(DockerLauncher launcher,
8888
String image = Utils.resolveVariables(launcher, getImage());
8989
args.add("docker", "pull", image);
9090
Launcher.ProcStarter proc = launcher.executeCommand(args)
91-
.stderr(launcher.getListener().getLogger());
92-
if (launcher.isDebug()) {
93-
proc = proc.stdout(launcher.getListener());
94-
}
91+
.stderr(launcher.getListener().getLogger())
92+
.stdout(launcher.getListener());
9593
int status = proc.join();
9694
if (status != 0) {
9795
throw new IOException("Could not pull image: " + image);

0 commit comments

Comments
 (0)