1
0
mirror of https://github.com/libssh2/libssh2.git synced 2025-08-01 11:26:53 +03:00

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
This commit is contained in:
Laurent Stacul
2021-09-02 22:17:35 +02:00
committed by GitHub
parent f0417cb196
commit 7daee037d1

View File

@ -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");
}