fix(poetry): log stdout/stderr and not message

This commit is contained in:
Rhys Arkins 2020-01-15 05:30:50 +01:00
parent a13ebf8979
commit bb06e60172

View file

@ -99,7 +99,7 @@ export async function updateArtifacts(
{ {
artifactError: { artifactError: {
lockFile: lockFileName, lockFile: lockFileName,
stderr: err.message, stderr: err.stdout + '\n' + err.stderr,
}, },
}, },
]; ];