From 7daee037d110bbdb003ea75ca68d357ffa9d8fa8 Mon Sep 17 00:00:00 2001 From: Laurent Stacul Date: Thu, 2 Sep 2021 22:17:35 +0200 Subject: [PATCH] openssh_fixture.c: Fix openssh_server build not working (#616) (#620) File: openssh_fixture.c Notes: fixes too long of output lines building docker image Credit: Laurent Stacul --- tests/openssh_fixture.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/openssh_fixture.c b/tests/openssh_fixture.c index 97f154e9..474b20aa 100644 --- a/tests/openssh_fixture.c +++ b/tests/openssh_fixture.c @@ -145,7 +145,8 @@ static int run_command(char **output, const char *command, ...) static int build_openssh_server_docker_image(void) { - return run_command(NULL, "docker build -t libssh2/openssh_server " + return run_command(NULL, "docker build --quiet " + "-t libssh2/openssh_server " "openssh_server"); }