1
0
Fork 0

feat: log output on container error

master
dump_stack() 2023-05-16 14:47:28 +00:00
parent adc450c201
commit 2cc06ed092
Signed by: dump_stack
GPG Key ID: BE44DA8C062D87DC
1 changed files with 1 additions and 0 deletions

View File

@ -141,6 +141,7 @@ func GenerateBaseDockerImage(registry string, commands []config.DockerCommand,
rawOutput, err := cmd.CombinedOutput()
if err != nil {
log.Error().Err(err).Msg(string(rawOutput))
return
}