Improved error output during setup

This commit is contained in:
Konrad Pabjan 2020-07-15 14:27:38 +02:00
parent 654aa00a6e
commit 533746a645
3 changed files with 10 additions and 1 deletions

3
dist/index.js vendored
View file

@ -6356,6 +6356,9 @@ function installPython(workingDirectory) {
listeners: {
stdout: (data) => {
core.debug(data.toString().trim());
},
stderr: (data) => {
core.error(data.toString().trim());
}
}
};